批处理文件:需要条件脚本来为我注销任何用户
Batch File: Need conditional script that would log out any user apart for me
我正在寻求帮助。
我希望在桌面上的本地 GPO 上创建本地登录脚本。
我需要做的是,当任何用户登录时,此脚本将触发并检查当前登录的用户,如果不是我的帐户,它将注销。
类似于:
IF NOT %username% = Domain\me shutdown.exe -l
也接受任何其他解决方案。
你要找的是HELP IF
语法应如下所示:
@echo off
rem add your username here after the = without space.
set "_MyUsername=MyUsername"
if [%username%] neq [%_MyUsername%] shutdown.exe /l /f || exit /b 0
我正在寻求帮助。
我希望在桌面上的本地 GPO 上创建本地登录脚本。
我需要做的是,当任何用户登录时,此脚本将触发并检查当前登录的用户,如果不是我的帐户,它将注销。
类似于:
IF NOT %username% = Domain\me shutdown.exe -l
也接受任何其他解决方案。
你要找的是HELP IF
语法应如下所示:
@echo off
rem add your username here after the = without space.
set "_MyUsername=MyUsername"
if [%username%] neq [%_MyUsername%] shutdown.exe /l /f || exit /b 0