PowerShell script packaging and WinNT execution? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T04:35:08Z http://stackoverflow.com/feeds/question/580589 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/580589/powershell-script-packaging-and-winnt-execution 0 PowerShell script packaging and WinNT execution? Myforwik 2009-02-24T05:37:29Z 2009-02-27T04:46:32Z <p>Is there any free software to package a powershell script into a standalone WIN32 executable?</p> <p>It seems it was possible to get the powershell beta's to run on win2000 and winNT, is there any known way to get the final powershell to run on it?</p> http://stackoverflow.com/questions/580589/powershell-script-packaging-and-winnt-execution/581680#581680 1 Answer by aphoria for PowerShell script packaging and WinNT execution? aphoria 2009-02-24T13:15:52Z 2009-02-24T13:15:52Z <p>I don't think there is any software that will package a PowerShell script into a stand-alone executable. That would require bundling PowerShell itself with the script (no small feat).</p> <p>The oldest supported OS is Windows XP SP2, so there is not a supported way to get PowerShell to run on NT or 2000.</p> http://stackoverflow.com/questions/580589/powershell-script-packaging-and-winnt-execution/581780#581780 0 Answer by Richard for PowerShell script packaging and WinNT execution? Richard 2009-02-24T13:44:37Z 2009-02-24T13:44:37Z <p>A easy step would be to create a .NET exe which embedded the script.</p> <p>This would, of course, require PSH (and any non-standard snapins) installed when executed.</p> <p>To remove those dependencies you would need to be able to handle any cmdlets used, as noted @aphoria this would be reinventing PSH, and all the snapins.</p> http://stackoverflow.com/questions/580589/powershell-script-packaging-and-winnt-execution/583990#583990 0 Answer by Peter Seale for PowerShell script packaging and WinNT execution? Peter Seale 2009-02-24T22:53:21Z 2009-02-24T22:53:21Z <p>I asked a similar question: <a href="http://stackoverflow.com/questions/482314/run-powershell-scripts-without-installing-powershell">http://stackoverflow.com/questions/482314/run-powershell-scripts-without-installing-powershell</a></p> http://stackoverflow.com/questions/580589/powershell-script-packaging-and-winnt-execution/593554#593554 0 Answer by JasonMArcher for PowerShell script packaging and WinNT execution? JasonMArcher 2009-02-27T04:46:32Z 2009-02-27T04:46:32Z <p>Not strictly the answer you are looking for (free software), but it may be useful to others. Here are some commercial options for packaging scripts into single executables:</p> <p><a href="http://www.adminscripteditor.com/editor/scriptpackager/" rel="nofollow">Admin Script Editor</a></p> <p><a href="http://www.primaltools.com/index.asp?p=PrimalScript" rel="nofollow">PrimalScript</a> OR <a href="http://www.primaltools.com/index.asp?p=PrimalPackager" rel="nofollow">PrimalPackager</a> (just packaging portion of PrimalScript)</p>