File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -39,19 +39,19 @@ PS C:\> Get-CsTeamsWorkLocationDetectionPolicy
39
39
Identity EnableWorkLocationDetection
40
40
-------- ----------------------
41
41
Global False
42
- Tag:wld-enabled True
43
- Tag:wld-disabled False
42
+ Tag:wld-policy1 True
43
+ Tag:wld-policy2 False
44
44
```
45
45
Fetches all the policy instances currently available.
46
46
47
47
### Example 2
48
48
``` powershell
49
- PS C:\> Get-CsTeamsWorkLocationDetectionPolicy -Identity wld-enabled
49
+ PS C:\> Get-CsTeamsWorkLocationDetectionPolicy -Identity wld-policy1
50
50
```
51
51
``` output
52
52
Identity EnableWorkLocationDetection
53
53
-------- ----------------------
54
- Tag:wld-enabled True
54
+ Tag:wld-policy1 True
55
55
```
56
56
Fetches an instance of a policy with a known identity.
57
57
@@ -62,8 +62,8 @@ PS C:\> Get-CsTeamsWorkLocationDetectionPolicy -Filter *wld*
62
62
``` output
63
63
Identity EnableWorkLocationDetection
64
64
-------- ----------------------
65
- Tag:wld-enabled True
66
- Tag:wld-disabled False
65
+ Tag:wld-policy1 True
66
+ Tag:wld-policy2 False
67
67
```
68
68
The ` Filter ` parameter can be used to fetch policy instances based on partial matches on Identity.
69
69
Original file line number Diff line number Diff line change @@ -28,25 +28,25 @@ This gives users the ability to consent to the use of this location data to set
28
28
29
29
### Example 1
30
30
``` powershell
31
- PS C:\> New-CsTeamsWorkLocationDetectionPolicy -Identity wld-enabled -EnableWorkLocationDetection $true
31
+ PS C:\> New-CsTeamsWorkLocationDetectionPolicy -Identity wld-policy -EnableWorkLocationDetection $true
32
32
```
33
33
``` output
34
34
Identity EnableWorkLocationDetection
35
35
-------- ----------------------
36
- Tag:wld-enabled True
36
+ Tag:wld-policy True
37
37
```
38
38
Creates a new policy instance with the identity wld-enabled. ` EnableWorkLocationDetection ` is set to the value specified in the command.
39
39
40
40
### Example 2
41
41
``` powershell
42
- PS C:\> New-CsTeamsWorkLocationDetectionPolicy -Identity wld-disable
42
+ PS C:\> New-CsTeamsWorkLocationDetectionPolicy -Identity wld-policy
43
43
```
44
44
``` output
45
45
Identity EnableWorkLocationDetection
46
46
-------- ----------------------
47
- Tag:wld-disable False
47
+ Tag:wld-policy False
48
48
```
49
- Creates a new policy instance with the identity wld-disable . ` EnableWorkLocationDetection ` will default to false if it is not specified.
49
+ Creates a new policy instance with the identity wld-policy . ` EnableWorkLocationDetection ` will default to false if it is not specified.
50
50
51
51
## PARAMETERS
52
52
You can’t perform that action at this time.
0 commit comments