Skip to content

Commit f133446

Browse files
committed
add issues and license sections.
1 parent 5c71cc5 commit f133446

File tree

1 file changed

+27
-6
lines changed

1 file changed

+27
-6
lines changed

README.md

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Microsoft Graph PowerShell SDK Preview
22
The Microsoft Graph PowerShell SDK is a collection of PowerShell modules that contain commands for calling Microsoft Graph service.
33

4-
## Installing the Microsoft.Graph Module
4+
# Modules
5+
The table below contains our Microsoft Graph rollup module. This module installs all the service modules as its dependencies.
6+
Description | Module Name | PowerShell Gallery Link
7+
----------------- | ----------------- | ------------------------
8+
Microsoft Graph | `Microsoft.Graph` | [![Mg]][MgGallery]
9+
10+
For a list of modules found in this repository, see the [Microsoft Graph Graph PowerShell modules](https://github.com/microsoftgraph/msgraph-sdk-powershell/wiki/MS-Graph-PowerShell-Modules) document.
11+
12+
## Installation
13+
### PowerShell Gallery
514

615
All the modules are published on [PowerShell Gallery](https://www.powershellgallery.com/packages/Microsoft.Graph). Installing is as simple as:
716

@@ -13,11 +22,6 @@ If you are upgrading from our preview modules, run `Install-Module` with AllowCl
1322
```ps
1423
Install-Module Microsoft.Graph -AllowClobber -Force
1524
```
16-
17-
Given the large size of the API surface area, one can also install only the service module(s) they are interested in:
18-
```ps
19-
Install-Module Microsoft.Graph.Users
20-
```
2125
There are a set of samples in the `samples` folder to help in getting started with the library. If you have an older version of these modules installed, there are extra uninstall instructions in the [InstallModule](./samples/0-InstallModule.ps1) script.
2226

2327
## Usage
@@ -89,3 +93,20 @@ If permission related errors occur and the user you authenticated with in the po
8993

9094
- You can try running `Disconnect-Graph`, then `Connect-Graph`. Then, run the code that encountered the permission issues to see if it works.
9195
- You can try running `Connect-Graph -ForceRefresh`. This will trigger a refresh of the access token in your cache. MSAL will only refresh the access token in your cache if it has expired (usually an hour), or if you explicitly refresh it via `-ForceRefresh`. Then, run the code that encountered the permission issues to see if it works.
96+
97+
## Issues
98+
If you find any bugs when using the Microsoft Graph PowerShell modules, please file an issue in our GitHub issues page.
99+
100+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
101+
102+
## License
103+
104+
Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT [license](LICENSE.txt).
105+
106+
<!-- References -->
107+
108+
<!-- Shields -->
109+
[Mg]: https://img.shields.io/powershellgallery/v/Microsoft.Graph.svg?style=flat-square&label=Microsoft.Graph
110+
111+
<!-- PS Gallery -->
112+
[MgGallery]: https://www.powershellgallery.com/packages/Microsoft.Graph/

0 commit comments

Comments
 (0)