From a4c0307bb55ac570fdc53c4a193896c9d700d936 Mon Sep 17 00:00:00 2001 From: timayabi2020 Date: Mon, 30 Jan 2023 12:12:39 +0000 Subject: [PATCH 1/2] Initialize Docs repository: https://github.com/MicrosoftDocs/microsoftgraph-docs-powershell of branch live --- .openpublishing.publish.config.json | 6 ++--- SECURITY.md | 41 +++++++++++++++++++++++++++++ cabgen-bootstrap.yml | 14 ++++++++++ 3 files changed, 58 insertions(+), 3 deletions(-) create mode 100644 SECURITY.md create mode 100644 cabgen-bootstrap.yml diff --git a/.openpublishing.publish.config.json b/.openpublishing.publish.config.json index b00d69499acf..9051488f666b 100644 --- a/.openpublishing.publish.config.json +++ b/.openpublishing.publish.config.json @@ -29,11 +29,10 @@ } ], "notification_subscribers": [ - "gendungu@microsoft.com" + "twamalwa@microsoft.com" ], "sync_notification_subscribers": [], "branches_to_filter": [], - "skip_source_output_uploading": false, "need_preview_pull_request": true, "dependent_repositories": [ { @@ -44,9 +43,9 @@ } ], "branch_target_mapping": {}, - "need_generate_pdf_url_template": false, "targets": {}, "docs_build_engine": {}, + "skip_source_output_uploading": false, "contribution_branch_mappings": {}, "dependent_packages": [ { @@ -60,6 +59,7 @@ "monikerPath": [ "mapping/monikerMapping.json" ], + "need_generate_pdf_url_template": false, "enable_incremental_build": false, "need_generate_pdf": false, "need_generate_intellisense": false diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000000..e138ec5d6a77 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,41 @@ + + +## Security + +Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). + +If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below. + +## Reporting Security Issues + +**Please do not report security vulnerabilities through public GitHub issues.** + +Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report). + +If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey). + +You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). + +Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: + + * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) + * Full paths of source file(s) related to the manifestation of the issue + * The location of the affected source code (tag/branch/commit or direct URL) + * Any special configuration required to reproduce the issue + * Step-by-step instructions to reproduce the issue + * Proof-of-concept or exploit code (if possible) + * Impact of the issue, including how an attacker might exploit the issue + +This information will help us triage your report more quickly. + +If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs. + +## Preferred Languages + +We prefer all communications to be in English. + +## Policy + +Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd). + + diff --git a/cabgen-bootstrap.yml b/cabgen-bootstrap.yml new file mode 100644 index 000000000000..e664b78653b8 --- /dev/null +++ b/cabgen-bootstrap.yml @@ -0,0 +1,14 @@ +trigger: +- live + +pr: none # Disable pull request triggers. + +resources: + repositories: + - repository: templates + type: git + name: Content CI/ReferenceAutomation + ref: refs/heads/master + +extends: + template: PowerShell/cabgen.yml@templates \ No newline at end of file From 5b77b69a5080280151d6b289eb94f7bef1dc12c1 Mon Sep 17 00:00:00 2001 From: Johan Forngren Date: Tue, 27 Feb 2024 11:29:40 +0100 Subject: [PATCH 2/2] Include -AllVersions in uninstall unstructions #497 --- microsoftgraph/docs-conceptual/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/microsoftgraph/docs-conceptual/installation.md b/microsoftgraph/docs-conceptual/installation.md index 35f82d977fa9..4941861a835c 100644 --- a/microsoftgraph/docs-conceptual/installation.md +++ b/microsoftgraph/docs-conceptual/installation.md @@ -99,8 +99,8 @@ Uninstall-Module Microsoft.Graph -AllVersions Then, remove all of the dependency modules by running the following commands. ```powershell -Get-InstalledModule Microsoft.Graph.* | ? Name -ne "Microsoft.Graph.Authentication" | Uninstall-Module -Uninstall-Module Microsoft.Graph.Authentication +Get-InstalledModule Microsoft.Graph.* | ? Name -ne "Microsoft.Graph.Authentication" | Uninstall-Module -AllVersions +Uninstall-Module Microsoft.Graph.Authentication -AllVersions ``` ## Next steps