(cas:72) Google Analyticator was unable to authenticate you with Google using the Auth Token you pasted into the input box on the previous step.

This could mean either you pasted the token wrong, or the time/date on your server is wrong, or an SSL issue preventing Google from Authenticating.

Try Deauthorizing & Resetting Google Analyticator.

Tech Info 400:Error fetching OAuth2 access token, message: 'invalid_grant'
Unique
Visitors
Powered By Google Analytics
Comments on: Windows Script for Marking All Disks Online http://longwhiteclouds.com/2017/08/15/windows-script-for-marking-all-disks-online/ all things Nutanix, VMware, cloud and virtualizing business critical applications Wed, 09 Oct 2024 07:59:03 +0000 hourly 1 https://wordpress.org/?v=6.7.6 By: Rob http://longwhiteclouds.com/2017/08/15/windows-script-for-marking-all-disks-online/comment-page-1/#comment-434038 Wed, 09 Oct 2024 07:59:03 +0000 http://longwhiteclouds.com/?p=11974#comment-434038 Corrected version

$offlinedisks = Get-Disk | Where-Object OperationalStatus -EQ ‘Offline’
foreach ($disk in $offlinedisks)
{
Set-Disk -Number $disk.Number -IsOffline $false
Set-Disk -Number $disk.Number -IsReadOnly $false
}

]]>
By: Windows Script for Marking All Disks Online — Long White Virtual Clouds | Farhan Parkar's Weblog http://longwhiteclouds.com/2017/08/15/windows-script-for-marking-all-disks-online/comment-page-1/#comment-275505 Thu, 17 Aug 2017 13:00:31 +0000 http://longwhiteclouds.com/?p=11974#comment-275505 […] via Windows Script for Marking All Disks Online — Long White Virtual Clouds […]

]]>
By: @vcdxnz001 http://longwhiteclouds.com/2017/08/15/windows-script-for-marking-all-disks-online/comment-page-1/#comment-275194 Tue, 15 Aug 2017 18:59:18 +0000 http://longwhiteclouds.com/?p=11974#comment-275194 In reply to Barrie.

Thanks Barrie, that's a great suggestion.

]]>
By: Barrie http://longwhiteclouds.com/2017/08/15/windows-script-for-marking-all-disks-online/comment-page-1/#comment-275163 Tue, 15 Aug 2017 13:43:03 +0000 http://longwhiteclouds.com/?p=11974#comment-275163 You could also use native Powershell disk commands to avoid cmd tools

$offlinedisks = get-disk | where OperationalStatus -EQ offline

foreach ($disk in $offlinedisks)

{Set-Disk -Number $disk.Number -IsOffline $false

Set-Disk -Number $disk.Number -IsReadOnly $false}

]]>