Create a txt file using batch file in a specific folder
rajeshkumar created the topic: Create a txt file using batch file in a specific folder @echo off echo.>”d:\testing\dblank.txt” This creates a file containing a blank line (CR + LF =…
Read more »Registering DLLs and MergeMod in batch mode
msiexpert created the topic: Registering DLLs and MergeMod in batch mode Hello, I moved to Windows 7 from WinXP and try to build my product on the new platform. I…
Read more »Batch Program to Shutdown and restart the computer.
Batch Program to Shutdown and restart the computer. Restart echo off D:\Temp\tmp\SHUTDOWN.EXE /L /R /Y /C pause Shutdown echo offd:\tmp\SHUTDOWN.EXE /L /Y /C pause
Read more »Batch Script to login to perforce and sync the source code to specific location
Batch Script to login to perforce and sync the source code to specific location @echo offcd /d “E:\Development\AnthillPro\work\perforce\SEABU\Module\Features1” “p4” -c SYSTEMBUILDSTAR -p 10.0.0.3:1666 -u UserName -P UserPass sync //SEABU/Module/Features1/… //SYSTEMBUILDSTAR/Module/Features1/…
Read more »How to Login Perforce Server by Using Batch File ?
Login perforce server using local client through batch script @echo off p4 -p10.0.0.3:1666 –uUser_Name -P”User_Pass” -c”PERFORCE_CLIENT” client –o Inputs: -p à Server Address -u à User Name -P à…
Read more »