Câu trả lời:
Phương pháp PowerShell:
$IEPath = (Get-ItemProperty -LiteralPath 'HKLM:\Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE' -ErrorAction Stop).'(default)'
$ShortcutFileName = (Get-Item $IEPath).Basename
$ShortcutFile = "$env:Public\Desktop\$ShortcutFileName InPrivate.lnk"
$WScriptShell = New-Object -ComObject WScript.Shell
$Shortcut = $WScriptShell.CreateShortcut($ShortcutFile)
$Shortcut.TargetPath = $IEPath
$Shortcut.Arguments = "-private"
$Shortcut.IconLocation = $IEPath
$Shortcut.Save()
Thêm chi tiết Cách tạo lối tắt để khởi động IE ở chế độ riêng tư bằng PowerShell