Script / Batch File to Uninstall JDE from Client PC

stegro

Member
I have a batch file that will install JDE:

cls
@echo off

net use j: \\mhn5\b7333

j:

cd oneworld client install

echo *****Installing JDEdwards OneWorld Production Environment*****
echo
echo *****Please wait until this window closes before loading JDEdwards*****
echo *****Thank you from the Iformation Center*****

setup.exe -S -P PD7333PB -T Compact -D c:\b7

c:

net use j: /DELETE

However I am having problems with creating a script / batch file that will successfully un-install JDE and the license that it is using from a clients pc. Thank you.

Stephan
 
According to the Knowledge Document ID 652450.1, if a user uninstalls the EnterpriseOne Windows client software on a machine via Add/Remove Programs, the uninstall process will automatically remove the machine name from the licensing machine key list.
To properly uninstall JDE, you can try calling the Windows Installer application from a VB script.
Here is an example from eHow.
 
Back
Top