标签:
执行powershell脚本有两种方式:
1、通过命令行参数启动脚本
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -version 2.0 -noexit -command ". ‘C:\Users\Administrator\Desktop\myshell.ps1‘"
2、通过Import-Module命令导入脚本
Import-Module C:\Users\Administrator\Desktop\myshell.ps1
标签:
原文地址:http://www.cnblogs.com/MrHacker/p/4383836.html