PowerShell script packaging and WinNT execution? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T04:35:08Zhttp://stackoverflow.com/feeds/question/580589http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/580589/powershell-script-packaging-and-winnt-execution0PowerShell script packaging and WinNT execution?Myforwik2009-02-24T05:37:29Z2009-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#5816801Answer by aphoria for PowerShell script packaging and WinNT execution?aphoria2009-02-24T13:15:52Z2009-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#5817800Answer by Richard for PowerShell script packaging and WinNT execution?Richard2009-02-24T13:44:37Z2009-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#5839900Answer by Peter Seale for PowerShell script packaging and WinNT execution?Peter Seale2009-02-24T22:53:21Z2009-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#5935540Answer by JasonMArcher for PowerShell script packaging and WinNT execution?JasonMArcher2009-02-27T04:46:32Z2009-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>