The search returned 15 results
- June 6, 2017 - 3:54 PM
- Forum: WAPT Packages
- Subject: PowerShell command in a package
- Answers: 2
- Views : 4326
Re: PowerShell command in a package
Thanks Hubert, the run_powershell works perfectly. 
- May 24, 2017 - 5:47 PM
- Forum: WAPT Packages
- Subject: PowerShell command in a package
- Answers: 2
- Views : 4326
PowerShell command in a package
Hello,
has anyone ever run PowerShell commands within a WAPT package?
This would be very useful for uninstalling Windows 10 tools like Mail, Edge, Skype, etc.
For those interested, here's a helpful link listing some commands...
has anyone ever run PowerShell commands within a WAPT package?
This would be very useful for uninstalling Windows 10 tools like Mail, Edge, Skype, etc.
For those interested, here's a helpful link listing some commands...
- September 23, 2016 - 11:16
- Forum: Package List
- Subject: Package: tis-adobereader
- Answers: 3
- Views : 11815
Re: Package: tis-adobereader
here are our improvements regarding this package:
if iswin64():
key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r'SOFTWARE\Wow6432Node\Adobe\Adobe ARM\1.0\ARM',sam=KEY_WRITE,create_if_missing=True)
reg_setvalue(key,'icheckReader',0,REG_DWORD)
else:
key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r ...
if iswin64():
key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r'SOFTWARE\Wow6432Node\Adobe\Adobe ARM\1.0\ARM',sam=KEY_WRITE,create_if_missing=True)
reg_setvalue(key,'icheckReader',0,REG_DWORD)
else:
key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r ...
- September 23, 2016 - 11:15
- Forum: Package List
- Subject: Package: tis-adobereader
- Answers: 3
- Views : 11815
Re: Package: tis-adobereader
Hello,
I do not recommend the DC version.
We are still using version 11.03 which works well even under Win10, why change?
I do not recommend the DC version.
We are still using version 11.03 which works well even under Win10, why change?
- September 23, 2016 - 11:11
- Forum: WAPT Packages
- Subject: [SOLVED] Launching a batch or PowerShell script
- Answers: 12
- Views : 27797
Re: Run a batch or powershell script
Hello,
the only way to see the progress is to open a command prompt as administrator and type `wapt-get install`.
Alternatively, put as many print statements as possible in the Python file and see the result of an installation in the WAPT console.
the only way to see the progress is to open a command prompt as administrator and type `wapt-get install`.
Alternatively, put as many print statements as possible in the Python file and see the result of an installation in the WAPT console.
- September 23, 2016 - 11:04
- Forum: WAPT Packages
- Subject: Problem with packets larger than 99 MB
- Answers: 2
- Views : 4875
Re: Problem with packets larger than 99 MB
Hello,
if it consistently fails at 100MB, in my opinion you need to look at the web server, there might be a restriction.
if it consistently fails at 100MB, in my opinion you need to look at the web server, there might be a restriction.
- September 22, 2016 - 5:41 PM
- Forum: WAPT Packages
- Subject: Firefox as default for all users
- Answers: 14
- Views : 22166
Re: Firefox as default for all users
Hello,
here are the commands to integrate into your setup.py to do this:
For x64 systems:
"C:\Program Files (x86)\Mozilla Firefox\uninstall\helper.exe" /SetAsDefaultAppGlobal
For x86 systems:
"C:\Program Files\Mozilla Firefox\uninstall\helper.exe" /SetAsDefaultAppGlobal
For you...
here are the commands to integrate into your setup.py to do this:
For x64 systems:
"C:\Program Files (x86)\Mozilla Firefox\uninstall\helper.exe" /SetAsDefaultAppGlobal
For x86 systems:
"C:\Program Files\Mozilla Firefox\uninstall\helper.exe" /SetAsDefaultAppGlobal
For you...
- September 22, 2016 - 5:32 PM
- Forum: WAPT Packages
- Subject: Adding a homepage in Firefox
- Answers: 16
- Views : 21576
Re: Adding a homepage in Firefox
Here's the content of our Mozilla.cfg for those who are interested:
(normally everything is commented for those who want to pick and choose options)
// Disables automatic updates
lockPref("app.update.enabled", false);
// to ensure automatic updates are disabled
lockPref("app ...
(normally everything is commented for those who want to pick and choose options)
// Disables automatic updates
lockPref("app.update.enabled", false);
// to ensure automatic updates are disabled
lockPref("app ...
- September 19, 2016 - 3:24 PM
- Forum: WAPT Packages
- Subject: backslash in command run
- Answers: 4
- Views : 6075
Re: Backslash in command run
Thank you, this solution works!
- September 16, 2016 - 11:09
- Forum: WAPT Packages
- Subject: backslash in command run
- Answers: 4
- Views : 6075
Re: Backslash in command run
Hello,
yes, and so it looks like this: c:////
(all backslashes are doubled)

yes, and so it looks like this: c:////
(all backslashes are doubled)
