/build/static/layout/Breadcrumb_cap_w.png

UltraEdit 17 registration

hi

iam trying to make an mst with a provided registration data, and iam having a hard time doing it.
as i read ver17 can be registered with uedit32.exe /lic,e="<LicenseID>|<Password>" command
however after calls the application this gives an incorrect path error.

anyone has any idea on this?
thanks

0 Comments   [ + ] Show comments

Answers (14)

Posted by: bmnuser 4 years ago
Senior White Belt
0

License activation for UltraEdit Pro v26 can be done as follows:

Please note that you need an active internet connection for license activation! You may also need an interactive user session / standard user logon which is allowed to use the web (check proxy authentication). You may experience problems when you try to activate by batch script and your local system account does not have the privilege to surf the web.

x64 platform:

"%ProgramW6432%\IDM Computer Solutions\UltraEdit\uedit64.exe" /lic,e="YourLicenseID|YourPasswordHere"

x86 platform:

%programfiles(x86)%\IDM Computer Solutions\UltraEdit\uedit32.exe" /lic,e="YourLicenseID|YourPasswordHere"


IDM support in USA offers a special enterprise deployment kit that does not use node-locking server activation. That will allow you to have installation and one-time license activation for all clients and users in a single installation package. That's what you need for large enterprise deployment and especially in a Citrix Terminal Server environment. 
Disadvantages: 1) Costs 2) Usually you will NOT get such a license if you have less than 100 licenses! Please contact IDM support for more information.


If you have such a special license file procedure is as easy as that:

32-bit: msiexec /i ue_english_enterprise.msi ALLUSERS=1 /qn

64-bit: msiexec /i ue_english_enterprise_64.msi ALLUSERS=1 /qn

LicenseFileCopy_v.vbs uedit32e_v.spl ALLUSERS

 

-or-

 

32-bit: msiexec /i ue_english_enterprise.msi ALLUSERS="" /qn

64-bit: msiexec /i ue_english_enterprise_64.msi ALLUSERS="" /qn

 

LicenseFileCopy_v.vbs uedit32e_v.spl CURRENT_USER

 

If preferred the installer and license file copy script may be run from network locations with appropriate changes to the paths for each command.

 

When installed for "All Users", this enterprise build looks for the license file in the following locations:

%AllUsersProfile%\IDMComp\UltraEdit\license\uedit32e_v.spl


As written above such a enterprise license file is pre-activated for all users / computers and should be kept in a safe place!

Posted by: hoteyes06 11 years ago
White Belt
0

Is the Ultraedit version 17 is an online registration? Because i cant register it if i have no internet connection. How can i register it without internet connection so when the user launch the shortcut, it is already registered.

Posted by: hoteyes06 11 years ago
White Belt
0

Is the Ultraedit version 17 is an online registration? How can i make it preregistered through offline? I got no captured files/registries.

Posted by: robtk 12 years ago
Senior Purple Belt
0
This will only work if you using the enterprise version installer. The command line I used successfully is ue_english.exe /s /f1"C:\Temp\ue_setup.iss" /v"LICENSEFILE=\"C:\Temp\ue.spl\"
Posted by: pjgeutjens 12 years ago
Red Belt
0
uedit32.exe /lic,e="<LicenseID>|<Password>"

It could be that windows cannot find the uedit32.exe when you try to execute it. Does the command work when you manually run it in a cmd shell?
During your install, are you executing this command in a shell that has the current directory set to the path that contains uedit32.exe? or is the path part of the PATH environment variable?
If not, make sure when you execute the exe, that the shell's path is correctly set. You can use oShell.CurrentDirectory in VBS or pushd %~dp0 in a batch file.

Rgds,

PJ
Posted by: bl4s 12 years ago
Senior Yellow Belt
0
ORIGINAL: robtk

This will only work if you using the enterprise version installer. The command line I used successfully is ue_english.exe /s /f1"C:\Temp\ue_setup.iss" /v"LICENSEFILE=\"C:\Temp\ue.spl\"




i need to use MST, there's any way to make the registration work with that? unfortunately the internet registration process didnt capture anything locally (file/reg changes). i know its internet registration however if i disable internet the program will act as registered after without inet connection so it must change something locally, its weird i cant see any changes.. sigh the old .reg method could be easier a lot.
Posted by: bl4s 12 years ago
Senior Yellow Belt
0
ORIGINAL: pjgeutjens

uedit32.exe /lic,e="<LicenseID>|<Password>"

It could be that windows cannot find the uedit32.exe when you try to execute it. Does the command work when you manually run it in a cmd shell?
During your install, are you executing this command in a shell that has the current directory set to the path that contains uedit32.exe? or is the path part of the PATH environment variable?
If not, make sure when you execute the exe, that the shell's path is correctly set. You can use oShell.CurrentDirectory in VBS or pushd %~dp0 in a batch file.

Rgds,

PJ


it is not related to this. iam trying this manually from the installdir and the uedit32.exe starts the application and the path message happens inside the application itself.
Posted by: pjgeutjens 12 years ago
Red Belt
0
it is not related to this. iam trying this manually from the installdir and the uedit32.exe starts the application and the path message happens inside the application itself.


Are you SURE uedit.exe supports this /lic or /license (not sure which you're using) command line parameter?
I ask for 2 reasons. First, Rob's command line suggestion seems to involve the installer, and not the application itself. Secondly, the error you describe sounds to me like uedit.exe trying to open a file /lic,e="<LicenseID>|<Password>", and not finding it, which makes sense...

Besides this, I have no other suggestions I fear.

Rgds,
PJ
Posted by: bl4s 12 years ago
Senior Yellow Belt
0
ORIGINAL: pjgeutjens

it is not related to this. iam trying this manually from the installdir and the uedit32.exe starts the application and the path message happens inside the application itself.


Are you SURE uedit.exe supports this /lic or /license (not sure which you're using) command line parameter?
I ask for 2 reasons. First, Rob's command line suggestion seems to involve the installer, and not the application itself. Secondly, the error you describe sounds to me like uedit.exe trying to open a file /lic,e="<LicenseID>|<Password>", and not finding it, which makes sense...

Besides this, I have no other suggestions I fear.

Rgds,
PJ


ye rob's told me its an installer only parameter, i've tried to run it after i've installed the product so its probably not usable for me.
found it there tho: http://www.appdeploy.com/packages/detail.asp?id=2186
so i need to find some other way for preregistriation because i need to use the msi+mst combo not the installer.
Posted by: robtk 12 years ago
Senior Purple Belt
0
ORIGINAL: pjgeutjens

it is not related to this. iam trying this manually from the installdir and the uedit32.exe starts the application and the path message happens inside the application itself.


Are you SURE uedit.exe supports this /lic or /license (not sure which you're using) command line parameter?
I ask for 2 reasons. First, Rob's command line suggestion seems to involve the installer, and not the application itself. Secondly, the error you describe sounds to me like uedit.exe trying to open a file /lic,e="<LicenseID>|<Password>", and not finding it, which makes sense...

Besides this, I have no other suggestions I fear.

Rgds,
PJ


I too tried an MST on the publicly available installer and couldn't get it to silently install. Silent deployment of UltraEdit on an enterprise level (both installation and activation) requires a special enterprise/corporate deployment installer. You need to contact IDM support for a download link.
Posted by: bl4s 12 years ago
Senior Yellow Belt
0
Rob: could you tell me the inside format of the .spl file ?
how exactly do u make / generate that?
thanks
Posted by: robtk 12 years ago
Senior Purple Belt
0
ORIGINAL: bl4s

Rob: could you tell me the inside format of the .spl file ?
how exactly do u make / generate that?
thanks



It's a binary license file generated by IDM support.

The following is a quote to me from IDM about the license file:
To include the license activation as part of the installation, please use the attached license file, which is unique and specially created for your company. Please protect this license file! Rename the attached license file to "ue.spl". If you copy the license file to the same location as the installer, it will automatically be copied to the appropriate location on the user's system. Please note that this license file must be left in a writable state for this build to function properly.
Posted by: tripp2loo 12 years ago
Yellow Belt
0
Did you have any luck using the MSI/MST option and the registration.
I have this app right now, and would like to do MSI/MST, but don't have to.

Cheers
Posted by: TiGiRiPI 11 years ago
White Belt
0

Within the MST, go to the MSI Script and add the following line.  I currently have this run during installation only.

  • Execute Installed Program uedit32.exe Command Line /lic,e="<LicenseID>|<Password>"

You can also use a WiseScript to have the program launch with the Window Minimized as well.

Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ