iexpress

How can I edit an exe's resources (File Description, Icon, etc.) using a command line utility?

﹥>﹥吖頭↗ 提交于 2019-12-05 19:55:41
问题 The whole story: I have created a fancy .NET program which has an installer created by the Visual Studio Installer (VSI). The VSI creates 2 files (setup.exe and MyProgramSetup.msi). I understand the reasons for both files being needed, however, I only want to distribute a SINGLE executable installer to users. I do not want them to see 2 files and have to choose between them. In order to do this I have merged the 2 files into a self-extracting archive using IExpress (as seen in this answer:

mkdir in batch file as admin

前提是你 提交于 2019-11-28 01:46:31
I'm trying to write a batch file that creates a new directory in %programfiles% . It needs to be run as admin. I've tried: runas /user:admin-pc\admin "mkdir C:\Program Files\MyDir" runas /user:admin-pc\admin "mkdir \"C:\Program Files\MyDir\"" runas /user:admin-pc\admin "cmd /c mkdir \"C:\Program Files\MyDir\"" runas /user:admin-pc\admin "cmd /c mkdir %programfiles%\MyDir" runas /user:admin-pc\admin "cmd /c mkdir \"C:/Program Files/MyDir\"" runas /user:admin-pc\admin "cmd /c mkdir C:\Program^ Files\MyDir" What's the right way to do this? The question turned out to be IExpress specific. You cam

How can I convert a VBScript to an executable (EXE) file? [closed]

本秂侑毒 提交于 2019-11-27 20:37:10
I'd looked around for information to convert a VBScript (*.vbs) to an executable and realised that most of the tools available are actually wrapping the script in the executable. Tried a few tools and it didn't worked as well as expected. I tried IExpress (in Windows XP) to create the Win32 self extraction cab file but it didn't invoke properly on Windows 7 machines. So I am looking for a way to compile the vbs into exe. I am trying to port my current script into VB Express 2008 but I have no prior knowledge of Visual Basic here. There are a lot of errors but I am still trying around. Can

How can a .bat file be 'converted' to .exe without third party tools?

女生的网名这么多〃 提交于 2019-11-26 11:44:55
There are many reasons to want to 'convert' a .bat to .exe - to hide/obfuscate implementation, passwords, path to resources , to create a service from batch file ... and mainly to make your work to look more complicated and important than it really is. There are also many reasons to not want to use third party tools. So what if you want to 'convert' a batch file to .exe without external software? (convert is in quotes because I don't think there's really way to compile a batch file to executable. There are too many abusive twisty techniques and bugs used extensively and all the tools that I

How can a .bat file be 'converted' to .exe without third party tools?

六月ゝ 毕业季﹏ 提交于 2019-11-26 03:33:38
问题 There are many reasons to want to \'convert\' a .bat to .exe - to hide/obfuscate implementation, passwords, path to resources , to create a service from batch file ... and mainly to make your work to look more complicated and important than it really is. There are also many reasons to not want to use third party tools. So what if you want to \'convert\' a batch file to .exe without external software? (convert is in quotes because I don\'t think there\'s really way to compile a batch file to