Browse Source

Add files via upload

pull/26/head
farag2 5 years ago
committed by GitHub
parent
commit
4047822782
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 51
      Win 10.ps1

51
Win 10.ps1

@ -55,32 +55,47 @@ else
# Detect the OS bitness # Detect the OS bitness
# Определить разрядность ОС # Определить разрядность ОС
switch ([Environment]::Is64BitOperatingSystem) { if (-not ([Environment]::Is64BitOperatingSystem))
$false { {
if ($RU) { Write-Warning -Message "Скрипт поддерживает только Windows 10 x64" } if ($RU)
else { Write-Warning -Message "The script supports Windows 10 x64 only" } {
Write-Warning -Message "Скрипт поддерживает только Windows 10 x64"
} }
Default {} else
{
Write-Warning -Message "The script supports Windows 10 x64 only"
}
break
}
# Detect the PowerShell bitness # Detect the PowerShell bitness
# Определить разрядность PowerShell # Определить разрядность PowerShell
switch ([IntPtr]::Size -eq 8) { if (-not ([IntPtr]::Size -eq 8))
$false { {
if ($RU) { Write-Warning -Message "Скрипт поддерживает только PowerShell x64" } if ($RU)
else { Write-Warning -Message "The script supports PowerShell x64 only" } {
Default {} Write-Warning -Message "Скрипт поддерживает только PowerShell x64"
}
else
{
Write-Warning -Message "The script supports PowerShell x64 only"
}
break
} }
# Detect whether the script is running via PowerShell ISE # Detect whether the script is running via PowerShell ISE
# Определить, запущен ли скрипт в PowerShell ISE # Определить, запущен ли скрипт в PowerShell ISE
switch ($psISE) { if ($psISE)
$true { {
if ($RU) { Write-Warning -Message "Скрипт не может быть запущен в PowerShell ISE" } if ($RU)
else { Write-Warning -Message "The script can not be run via PowerShell ISE" } {
Write-Warning -Message "Скрипт не может быть запущен в PowerShell ISE"
} }
Default {} else
{
Write-Warning -Message "The script can not be run via PowerShell ISE"
}
break
} }
#endregion Check #endregion Check
@ -2918,4 +2933,4 @@ if ($Error)
} }
} }
} | Sort-Object -Property Line | Format-Table -AutoSize -Wrap | Out-String).Trim() } | Sort-Object -Property Line | Format-Table -AutoSize -Wrap | Out-String).Trim()
} }
Loading…
Cancel
Save