powershell Powershell 操作 windows更新 定义更新搜索 $Criteria = "IsInstalled=0 and Type='Software'" 搜索可用的更新 $Searcher = New-Object -ComObject Microsoft.Update.Searcher $SearchResult = $Searcher.Search($Criteria).Updates 下载更新 $Session = New-Object -ComObject Microsoft.Update.Session $Downloader = $Session.CreateUpdateDownloader() $Downloader.Updates = $SearchResult $Downloader.Download() 安装更新 $Installer = New-Object -ComObject Microsoft.Update.Installer $Installer.Updates = $SearchResult $Result = $Installer.Install() 检查是否需要重启 $Resu
windows LGPO使用 下载地址 [https://www.microsoft.com/en-us/download/details.aspx?id=55319] 备份GPO lgpo.exe /b c:\location 应用GPO lgpo.exe /g c:\location
windows robocopy ROBOCOPY "\\servername\sharelocation" "\\newservername\newsharelocation" /MIR /SEC /LOG:location:\nameoflogfile
windows Windows Server Core 配置 Windows Internal Database 内存限制 安装Microsoft ODBC Driver 13.1 for SQL Server http://go.microsoft.com/fwlink/?LinkId=825608 安装Microsoft Command Line Utilities 13.1 for SQL Server https://www.microsoft.com/en-us/download/details.aspx?id=53591 执行sqlcmd cd c:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn SQLCMD.EXE
Active Directory 更改Active Directory的默认全名格式 Active Directory 中默认的全名格式是名字在前姓在后,要改为姓在前只需 1. 打开ADSI编辑器 2. 点击操作-连接到 3. 在选择一个已知命名上下文中选择配置 4. 编辑CN=user-Display,CN=804,CN=DisplaySpecifiers,CN=Configuration,{{你的域名}}的属性 5. 修改createDialog为%% 6. 保存退出 之后在Active Directory中修改姓名是就是姓在前的了。
windows 重建windows图标缓存 新建以下bat文件,然后执行 rem 关闭Windows外壳程序explorer taskkill /f /im explorer.exe rem 清理系统图标缓存数据库 attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db" del /f "%userprofile%\AppData\Local\IconCache.db" attrib /s /d -h -s -r "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\*" del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_32.db"