@@ -16,40 +16,38 @@ Microsoft Graph PowerShell supports two types of authentication: delegated and a
16
16
```
17
17
Connect-MgGraph [[-Scopes] <String[]>] [[-ClientId] <String>] [-TenantId <String>]
18
18
[-ContextScope <ContextScope>] [-Environment <String>] [-UseDeviceCode] [-ClientTimeout <Double>] [-NoWelcome]
19
- [-ProgressAction <ActionPreference>] [ <CommonParameters>]
19
+ [<CommonParameters>]
20
20
```
21
21
22
22
### AppCertificateParameterSet
23
23
```
24
24
Connect-MgGraph [-ClientId] <String> [[-CertificateSubjectName] <String>] [[-CertificateThumbprint] <String>]
25
- [-SendCertificateChain <Boolean>] [-Certificate <X509Certificate2>] [-TenantId <String>]
26
- [-ContextScope <ContextScope>] [-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome]
27
- [-ProgressAction <ActionPreference>] [<CommonParameters>]
25
+ [-Certificate <X509Certificate2>] [-TenantId <String>] [-ContextScope <ContextScope>] [-Environment <String>]
26
+ [-ClientTimeout <Double>] [-NoWelcome] [<CommonParameters>]
28
27
```
29
28
30
29
### IdentityParameterSet
31
30
```
32
31
Connect-MgGraph [[-ClientId] <String>] [-ContextScope <ContextScope>] [-Environment <String>]
33
- [-ClientTimeout <Double>] [-Identity] [-NoWelcome] [-ProgressAction <ActionPreference>] [ <CommonParameters>]
32
+ [-ClientTimeout <Double>] [-Identity] [-NoWelcome] [<CommonParameters>]
34
33
```
35
34
36
35
### AppSecretCredentialParameterSet
37
36
```
38
37
Connect-MgGraph [-ClientSecretCredential <PSCredential>] [-TenantId <String>] [-ContextScope <ContextScope>]
39
- [-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome] [-ProgressAction <ActionPreference>]
40
- [<CommonParameters>]
38
+ [-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome] [<CommonParameters>]
41
39
```
42
40
43
41
### AccessTokenParameterSet
44
42
```
45
43
Connect-MgGraph [-AccessToken] <SecureString> [-Environment <String>] [-ClientTimeout <Double>] [-NoWelcome]
46
- [-ProgressAction <ActionPreference>] [ <CommonParameters>]
44
+ [<CommonParameters>]
47
45
```
48
46
49
47
### EnvironmentVariableParameterSet
50
48
```
51
49
Connect-MgGraph [-ContextScope <ContextScope>] [-Environment <String>] [-ClientTimeout <Double>]
52
- [-EnvironmentVariable] [-NoWelcome] [-ProgressAction <ActionPreference>] [ <CommonParameters>]
50
+ [-EnvironmentVariable] [-NoWelcome] [<CommonParameters>]
53
51
```
54
52
55
53
## DESCRIPTION
0 commit comments