Posted On April 3, 2019

Credit_Invoice_Reprints_ZZ6_7_8.bat

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Credit_Invoice_Reprints_ZZ6_7_8.bat
fsguiapp.exe -cm:\mfgsys\fs.cfg -iZZ1{TAB}y2k99{CR}bexe{ESC}zz6{CR}
M:\cabsauto\timeout 15
fsguiapp.exe -cm:\mfgsys\fs.cfg -iZZ2{TAB}y2k99{CR}bexe{ESC}zz7{CR}
M:\cabsauto\timeout 15
fsguiapp.exe -cm:\mfgsys\fs.cfg -iZZ3{TAB}y2k99{CR}bexe{ESC}zz8{CR}
rem M:\cabsauto\timeout 15
rem fsguiapp.exe -s -cm:\mfgsys\fs.cfg -iZZ4{TAB}y2k99{CR}bexe{ESC}zz4{CR}

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Check RPC Reachability of Remote Computer

# This is an ancient script that would work with PowerShell versions 2 to 5,…

Enable Serial over Ethernet

enableconfig tplatform console serialendcopy run startreload

PowerShell: Regex Examples

# Example 1 Simple 10-digit match $x='123-456-7890' [regex]$regex10Digits='\({0,1}\d{0,1}\){0,1}\-{0,1}(\d{3})' $areaCode=$regex10Digits.Match($x).Groups[1].Value # Example 2 IP Version 4…