摘要:
使用C#中的List<T> $objlist=New-Object System.Collections.Generic.List[System.String] $objlist.Add("Hello") $objlist.Add("World") foreach ($item in $objlis 阅读全文
摘要:
Get-ADUser导出用户 导出csv Get-ADUser -Filter * -SearchBase "OU=22users,DC=test,DC=com" |Select SamAccountName,DistinguishedName |Export-csv -Path c:\1\resu 阅读全文
摘要:
aa.exe 代码 for (int i = 1; i <= 5; i++) { Console.WriteLine("hello world:{0}",i); System.Threading.Thread.Sleep(1000); } aa.exe 返回结果 hello world:1 hell 阅读全文