重启后如何运行批处理脚本?

时间:2014-11-24 14:20:34

标签: batch-file batch-processing

我有2个批处理脚本。 这是第一个:

pushd \\ta1bbn01\Public\Migration\
      %CD%\uninstallLogs\rationaluninstalltool.exe %CD%\uninstallLogs
      \\%COMPUTERNAME%-%USERNAME%.log -c -nr

    popd

第一个是卸载软件,然后重启机器。重启后我想运行我的第二个脚本,它将安装一个新软件。 我应该在第一个脚本中输入什么内容才能将其添加到下一次启动,我只需要在下次启动时使用它。 如何在30秒的延迟内运行它以便确保所有其他服务都已启动?

1 个答案:

答案 0 :(得分:0)

将批处理放在启动文件夹上..让我们假设你的批处理是test.bat ..把它放在启动文件夹中

在批处理结束时,检查一切是否正确,然后删​​除test.bat

@echo off
REM // all your installation logic
REM // if something went wrong exit .. 
REM // we have finished what we want so we will delete the batch from the startup
del test.bat
@echo on

我希望这可以提供帮助。