タイトルにあるように、リストされているブラウザの Metro/Modern UI バージョンでプライベート ブラウジング モードに入る最も簡単/迅速な方法は何ですか?
答え1
IE 画面を右クリックし、[タブ ツール] ボタン (3 つの小さな点) をクリックして、[新しい InPractice タブ] を選択します。
答え2
Chrome のモダン UI バージョンでは、通常どおり、[メニュー]、[新しいシークレット ウィンドウ] をクリックするだけです。
隅にある新しいボタンを使用して、シークレット セッションと既存のセッションを切り替えることができます。
答え3
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()