@@ -40,11 +40,10 @@ PS C:\> Get-Module
4040
4141ModuleType Version PreRelease Name ExportedCommands
4242---------- ------- ---------- ---- ----------------
43- Binary 1.0.9.3978 Intersight.PowerShell {Get-IntersightAaaAuditRecord, Get-IntersightAccessPolicy, Get…
44- Manifest 7.0.0.0 Microsoft.PowerShell.Management {Add-Content, Clear-Content, Clear-Item, Clear-ItemProperty… }
43+ Binary 1.0.11.2025081401 Intersight.PowerShell {Get-IntersightAaaAuditRecord, Get...}
44+ Manifest 7.0.0.0 Microsoft.PowerShell.Management {Add-Content, Clear-Content, Clear-Item}
4545Manifest 7.0.0.0 Microsoft.PowerShell.Utility {Add-Member, Add-Type, Clear-Variable, Compare-Object…}
46- Script 2.1.0 PSReadLine {Get-PSReadLineKeyHandler, Get-PSReadLineOption, Remove-PSRead…
47-
46+ Script 2.1.0 PSReadLine {Get-PSReadLineKeyHandler, Get-PSReadLineOption}
4847```
4948User can place the module in the directory listed in ``` $env:PSModulePath ``` or the path of Intersight.PowerShell can be added in ``` $env:PSModulePath ``` to import the module by name.
5049
@@ -62,10 +61,12 @@ To expore the other supported cmdlet parameter like ```KeyPassPhrase```, ```Prox
6261
6362### Authenticate the user
6463Intersight.PowerShell supports only HttpSigning Auth. The API key can be supplied through either a file path or as a string.
64+
65+ ** Note** : If your account is provisioned on the ** EMEA cluster** , you must use the URL ` eu-central-1.intersight.com ` instead of ` intersight.com `
6566#### Provide API Key file path.
6667``` powershell
6768$onprem = @{
68- BasePath = "https://intersight.com"
69+ BasePath = "https://intersight.com" # or 'eu-central-1.intersight.com' if your account is in EMEA cluster
6970 ApiKeyId = "xxxxx27564612d30dxxxxx/5f21c9d97564612d30dd575a/5f9a8b877564612xxxxxxxx"
7071 ApiKeyFilePath = "C:\\secrectKey.txt"
7172 HttpSigningHeader = @("(request-target)", "Host", "Date", "Digest")
@@ -89,7 +90,7 @@ SignatureValidityPeriod : 0
8990
9091``` powershell
9192$onprem = @{
92- BasePath = "https://intersight.com"
93+ BasePath = "https://intersight.com" # or 'eu-central-1.intersight.com' if your account is in EMEA cluster
9394 ApiKeyId = "xxxxx27564612d30dxxxxx/5f21c9d97564612d30dd575a/5f9a8b877564612xxxxxxxx"
9495 ApiKeyString = "-----BEGIN RSA PRIVATE KEY-----XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-----END RSA PRIVATE KEY-----"
9596 HttpSigningHeader = @("(request-target)", "Host", "Date", "Digest")
@@ -170,7 +171,7 @@ DisplayNames :
170171```
171172
172173## Create the Policy Under PSOrg organization
173- ### Create Ntp Policy
174+ ### Create NTP Policy
174175The cmdlet ``` New-IntersightNtpPolicy ``` is used to create the Ntp Policy. To refer Organization we are using ``` $newOrg ``` variable where we have
175176created the organization in previous example.
176177``` powershell
@@ -231,11 +232,11 @@ DisplayNames :
231232```
232233
233234### create KVM policy under PSOrg organization
234- The cmdlet ``` New-IntersightKvmPolicy ``` is used to create the Kvm Policy. To refer Organization we are using ``` $newOrg ``` variable where we have
235+ The cmdlet ``` New-IntersightKvmPolicy ``` is used to create the KVM Policy. To refer Organization we are using ``` $newOrg ``` variable where we have
235236created the organization in previous example.
236237
237238``` powershell
238- PS C:\> $kvmPolicy = New-IntersightKvmPolicy -Name PSKvm -Description "Kvm policy for PSOrg" -EnableVideoEncryption $true -EnableLocalServerVideo $true -Enabled $true -MaximumSessions 2 -Organization $newOrg
239+ PS C:\> $kvmPolicy = New-IntersightKvmPolicy -Name PSKvm -Description "KVM policy for PSOrg" -EnableVideoEncryption $true -EnableLocalServerVideo $true -Enabled $true -MaximumSessions 2 -Organization $newOrg
239240PS C:\> $kvmPolicy
240241
241242ClassId : KvmPolicy
@@ -295,17 +296,17 @@ DisplayNames :
295296
296297### Get-IntersightNtpPolicy
297298---
298- It returns the list of availabe ntp policy in the intersight cloud.
299+ It returns the list of available NTP policy in the intersight cloud.
299300``` powershell
300301PS C:\> $ntpPolicyList = Get-IntersightNtpPolicy
301302PS C:\> $ntpPolicyList.Count
30230315
303304```
304- ``` $ntpPolicyList ``` contains the list of ntp policy, showing only the count of ntp policy to avoid the huge list.
305+ ``` $ntpPolicyList ``` contains the list of ntp policy, showing only the count of NTP policy to avoid the huge list.
305306
306307 ### Get-intersightNtpPolicy -Name <Name of the policy >
307308 ---
308- It returns the ntp policy named "PSNtp"
309+ It returns the NTP policy named "PSNtp"
309310
310311** _ NOTE_ ** A maximum of 10,000 objects can be retrieved by Get cmdlets in a single invocation
311312
@@ -366,14 +367,14 @@ DisplayNames :
366367
367368 ```
368369
369- ### Get ntp Policies under the Organization named PSOrg
370+ ### Get NTP Policies under the Organization named PSOrg
370371---
371372 ``` powershell
372373PS C:\> $ntpPolicyList = Get-IntersightOrganizationOrganization -Name PSOrg | Get-IntersightNtpPolicy
373374
374375 ```
375376
376- ### Get ntp policy based on query parameter inlineCount
377+ ### Get NTP policy based on query parameter inlineCount
377378 Get cmdlets support all the query parameter specified in Intersight OpenAPI document.
378379
379380 ``` powershell
@@ -387,8 +388,8 @@ Count Results
387388
388389 ```
389390---
390- ## update the existing MO
391- ### Update the ntp policy -NtpServers with "33.33.33.33" and "10.10.10.10"
391+ ## update the existing NTP Policy
392+ ### Update the NTP policy -NtpServers with "33.33.33.33" and "10.10.10.10"
392393 Here we refer the PSNtp policy what we have already created in previous example.
393394 ``` powershell
394395
@@ -449,7 +450,7 @@ DisplayNames :
449450 ```
450451---
451452
452- ## Delete the Mo
453+ ## Delete the NTP policy
453454We have already created one Ntp policy and Kvm policy, now we delete it.
454455
455456``` powershell
0 commit comments