Go to http://support.ugs.com and download the NX 7.5 source files.
In order to be able to get source files, you will need
> A webkey login account
Nx is a set of extensible dev tools for monorepos, which helps you develop like Google, Facebook, and Microsoft. It has first-class support for many frontend and backend technologies, so its documentation comes in multiple flavours. Cask offers tech expertise, artisan solutions, and a passion for innovation in maximizing the ServiceNow platform. Find out what made us their ideal partners.
CAST (Computer Assisted Self) is a library of self-paced tutorials covering all the major applications of the NX CAD, CAM and CAE software. CAST is an accessible and affordable way to gain the fundamental NX skills you need. Siemens NX software is a flexible and powerful integrated solution that helps you deliver better products faster and more efficiently. NX delivers the next generation of design, simulation, and manufacturing solutions that enable companies to realize the value of the digital twin.
So first create a webkey for your company. But to create your login account
> You need your SoldtoID and Webkey Access Code
>You need a static IP
If you don’t know your webkey access code, look at the top of your license file, or NX log file.You need a static IP which you can register with Siemens. You register this IP the first time at http://support.ugs.com (you can get your ip at http://www.whatsmyip.net/).
Now you can download software updates and utilities.
I use Altiris System for deployment. You can use any other deployment system if you want, or create a batch file which the entire code and place the source files together with a batch file on a network shared location to be installed from.
1-Install NX 7.5
3-Installing the Variables
5-Installing the maintenance releases
1- Install NX 7.5
REM Installing NX7.5
IF not exist C:temp mkdir c:temp
SET NXFOLDER=C:UGSNX75
SET UGS_LICENSE_SERVER=28000@LicenseServer1;28000@licenseServer2
msiexec.exe /qn /i “Server with Source Fileslnx-7.5.0-32bitdvdrom075nx075UGS NX 7.5.msi” ADDLOCAL=”ALL” INSTALLDIR=”%NXFOLDER%” LICENSESERVER=%UGS_LICENSE_SERVER%
REM Adding the Firewall Exception
NETSH firewall add allowedprogram “C:UGSNX75ugiiugraf.exe” “NXComponent” ENABLE
REM For later windows use the command “netsh advfirewall firewall”
REM Installing Variables
SET UGS_LICENSE_SERVER=28000@LicenseServer1;28000@LicenseServer2
REM Set the bundles that you have acquired. In my case I will use these two
SET UGS_LICENSE_BUNDLE=ACD;NX10100N
REG.EXE ADD “HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSession ManagerEnvironment” /v UGS_LICENSE_SERVER /d %UGS_LICENSE_SERVER% /f
REG.EXE ADD “HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSession ManagerEnvironment” /v UGS_LICENSE_BUNDLE /d %UGS_LICENSE_BUNDLE% /f
REM Installing NX7.5 Documentation
SET NXFOLDER=C:UGSNX75
MSIEXEC.EXE /qn /i “Server with Source Filesdvdrom_ugdoc075win32ugdoc075UGS NX 7.5 Documentation.msi” ADDLOCAL=”ALL” INSTALLDIR=”%NXFOLDER%”
REM Installing Maintainence Release for NX7.5
“Server With Source FilesNX7.5.132-bitdvdrom0751_05ugs_update0751ugs_update.bat” -d
REM Installing NX Cast and its Update
SET UGII_BASE_DIR=C:UGSNX75
REM Isscript10.msi will be installed. It is needed for running the CAST .msi setup.
MSIEXEC.EXE /qn /i “Server with Source Filesnxcast-7.5.0-win32I386NXCAST32a82d32d.Msi”
MSIEXEC.EXE /qn /i “Server with Source Filesnxcast-7.5.0-win32I386NXCAST32Siemens PLM Software NX 7.5 CAST.msi” ADDLOCAL=”ALL”
Uninstall Process:
(for a detailed post, go to www.msimagic.com )