Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Maintenance Pack 1

Status
Not open for further replies.

SiW979

Mechanical
Joined
Nov 16, 2007
Messages
804
Location
GB
Does anyone know how to find what maintenance pack we are using from command line, file, registry. We know we can find this in the syslog, but we are doing remote installs and need to find this information in the back ground. We also know we can get the QRM details from env_print.

Any helpe will be appreciated.

Best regards

Simon (NX4.0.4.2 MP4 - TCEng 9.1.3.6.c)


Life shouldn't be measured by the number of breaths you take, but rather how many times it's taken away...
 
Simon,

In NX5 you can use

"%UGII_BASE_DIR%\ugii\env_print" -m

for NX4 one has to use other methods.

strings "%UGII_BASE_DIR%\ugii\libpatch.dll" | findstr /c:MP

Regards, Joe
 
Joe

Thanks alot for that, it works a treat.

Best regards

Simon (NX4.0.4.2 MP4 - TCEng 9.1.3.6.c)


Life shouldn't be measured by the number of breaths you take, but rather how many times it's taken away...
 
How do you run those commands ??? in a command prompt ??
Thanks,
 
yes or in this case we are running it as part of a script.

Best regards

Simon (NX4.0.4.2 MP4 - TCEng 9.1.3.6.c)


Life shouldn't be measured by the number of breaths you take, but rather how many times it's taken away...
 
all,
I did a call batch inside of my normal ug batch and collected the date-time-computername and the version.....


echo %date% %time% %username% %computername% >> n:\temp\dave\ugnx5_update.txt
"%UGII_BASE_DIR%\ugii\env_print" -n >> n:\temp\dave\ugnx5_update.txt

the test file read like....

Thu 07/24/2008 13:19:31.91 dave davescomputer
NX 5.0.4.1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top