摘要: 使用C#中的List<T> $objlist=New-Object System.Collections.Generic.List[System.String] $objlist.Add("Hello") $objlist.Add("World") foreach ($item in $objlis 阅读全文
posted @ 2022-03-13 13:26 shenshu 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Get-ADUser导出用户 导出csv Get-ADUser -Filter * -SearchBase "OU=22users,DC=test,DC=com" |Select SamAccountName,DistinguishedName |Export-csv -Path c:\1\resu 阅读全文
posted @ 2022-03-13 13:05 shenshu 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2022-03-13 11:26 shenshu 阅读(137) 评论(0) 推荐(0) 编辑