Advertisement
Rick0

STARTUP

Mar 27th, 2020
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.62 KB | None | 0 0
  1. @echo off
  2. IF NOT EXIST "%userprofile%\Desktop\Atalhos_Home" MD "%userprofile%\Desktop\Atalhos_Home"
  3. SET "APP_PASTA=%SYSTEMDRIVE%\Suporte\Apphome"
  4. SET "APP_LNK=%userprofile%\Desktop\Apphomeoffice.lnK"
  5. SET "LNK_PASTA=%SYSTEMDRIVE%\suporte\atalhos_home"
  6. SET "ATALHOS_PXX=%userprofile%\Desktop\atalhos_home"
  7. SET "A_LNK=%userprofile%\Desktop\Atalhos_Home.lnK"
  8. SET "LOGIN_LNK=%userprofile%\Desktop\Login.lnK"
  9. SET "LOGIN_BAT=%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Startup\XXX.bat"
  10. SET "LNK_TEAM=%userprofile%\Desktop\TeamViewerQS.lnk"
  11. SET "TEAM_EXE=%SYSTEMDRIVE%\suporte\Apphome\TeamViewerQS.exe"
  12.  
  13. :REMOVE PASTA ATALHOS E DEIXA SO UM LINK
  14. IF EXIST "%ATALHOS_PXX%" RD /S /Q "%ATALHOS_PXX%"
  15. ::PASTA HOME OFFICE ATALHO
  16. IF NOT EXIST "%APP_LNK%" powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%APP_LNK%');$s.TargetPath='%APP_PASTA%';$s.Save()"
  17. ::ATALHOS TIM
  18. IF NOT EXIST "%A_LNK%" powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%A_LNK%');$s.TargetPath='%LNK_PASTA%';$s.Save()"
  19. ::ATALHO AJUSTE DE AUDIO
  20. IF NOT EXIST "%userprofile%\Desktop\Audio Tuning Wizard.lnk" powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%userprofile%\Desktop\Audio Tuning Wizard.lnk');$s.TargetPath='%PROGRAMFILES%\Cisco Systems\Cisco IP Communicator\AudioTuningWizard.exe';$s.Save()"
  21. ::ATALHO LOGIN DE REDE
  22. IF NOT EXIST "%LOGIN_LNK%" powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%LOGIN_LNK%');$s.TargetPath='%LOGIN_BAT%';$s.Save()"
  23. ::ATALHO TEAM VIEWER
  24. IF NOT EXIST "%LNK_TEAM%" powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%LNK_TEAM%');$s.TargetPath='%TEAM_EXE%';$s.Save()"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement