如何用PowerShell重启电脑
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用PowerShell重启电脑相关的知识,希望对你有一定的参考价值。
工具/原料Windows Powershell ISE
、命令提示符替换Windows Powershell
1
右击屏幕左角win徽标菜单项显示命令提示符要想启 Windows Powershell ISE首先需要菜单替换 Windows Powershell
2
替换具体:
任务栏空白处右击鼠标选择属性
3
任务栏导航属性窗口切换导航选项卡
4
勾选我右键单击右角或按Windows键+X菜单命令提示符替换Windows Powershell(C)再点击确定
5
本菜单项已经 Windows Powershell 步骤便省
END
二、启 Windows Powershell ISE
屏幕左角 win 徽标处右击鼠标选择"Windows Powershell(管理员)"(选择"Windows Powershell)
打Powrshell窗口鼠标移任务栏 Windows Powershell 图标处右击
弹右键菜单选择Windows Powershell ISE
Windows Powershell ISE便启功 参考技术A Restart-Computer -Force
如果你想定时重启,可以用Start-Sleep设置时间,比如设置2小时后重启:
Start-Sleep -Seconds 7200; Restart-Computer -Force本回答被提问者采纳如何用powershell在windowsazure上建立DS系列虚机
直接上步骤:
1,首先下载一个microsoft azure powershell.
2,打开这个microsoft azure powershell.
键入:Get-AzurePublishSettingsFile
会自动弹出一个窗口让你下载一个文件,下载下来并复制文件完整路径。
随后键入,导入文件:
Import-AzurePublishSettingsFile "文件完整路径"
键入:New-AzureStorageAccount -StorageAccountName "存储名称" -Location "China East" -Type "Premium_LRS
并配置成默认存储账户,键入:
Set-AzureSubscription -CurrentStorageAccountName "shadowtest" -Subscriptionid 406fdb2e-815e-4bed-a2fa-9a5c1b46608d(你自己的subID)
4,键入:
$serviceName = "自定义"
$location = "China East"
$vmSize ="Standard_DS3" (这里以DS3系列为例)
$adminUser = "testuser"
$adminPassword = "1q2w3e4r!"
$vmName ="自定义1"
New-AzureService -ServiceName "自定义" -Location $location
$OSImage = Get-AzureVMImage –ImageName "f1179221e23b4dbb89e39d70e5bc9e72__OpenLogic-CentOS-65-20150325"
$vm = New-AzureVMConfig -Name $vmName –InstanceSize $vmSize -ImageName $OSImage.ImageName
Add-AzureProvisioningConfig -Linux –LinuxUser $adminUser -Password $adminPassword –VM $vm
New-AzureVM -ServiceName $serviceName -VM $vm
就完成啦~需要挂磁盘的话就回到portal上去挂,直接就是SSD的啦。
本文出自 “11142118” 博客,转载请与作者联系!
以上是关于如何用PowerShell重启电脑的主要内容,如果未能解决你的问题,请参考以下文章
sql Powershell Migration工具http://stackingcode.com/blog/2011/10/12/database-migrations-with-powershel
powershell 来自https://stackoverflow.com/questions/31051103/how-to-export-a-class-in-powershell-v5-mod