我希望能够做到这一点:
C:\Users\MyUsername\AppData\Local\slack\slack.exe -fullscreen
或者,类似以全屏模式打开 Slack Desktop。
与按下 Slack Desktop 上的 按钮时获得的模式相同Ctrl+Shift+F
。我想知道该参数,以便在我打开应用程序时自动发生这种情况。在任何地方都找不到开关。
答案1
使用 Powershell 编写一个脚本,在启动 Slack 后按 Ctrl+Shift+F。例如:
& ~\desktop\Slack.lnk # launch slack
$wshell = New-Object -ComObject wscript.shell; # initialize wscript
$wshell.AppActivate('Slack - My Workspace') # change this to the title of your slack window; activate it to receive the key combination
Sleep 10 # wait for it to open
$wshell.SendKeys('^+{F}') # press the Ctrl+Shift+F key combination
参考