Advice for Windows system scripting+programming - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T15:09:59Zhttp://stackoverflow.com/feeds/question/841669http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming0Advice for Windows system scripting+programmingShaChris232009-05-08T20:35:11Z2009-05-11T06:30:04Z
<p>I just got a project where I have to do the following on a Windows OS:</p>
<ol>
<li>detect how many drives (C: D: E:
..etc) are connected to current
system </li>
<li>what the system labels are
for each volume </li>
<li>how much storage
(both used and free) for each of the
drives</li>
<li>what format each drive is
(NTFS/FAT32) </li>
<li>how many files are
in a given directory in any of those
drives </li>
<li>how big each file size is</li>
<li>File processing (each file is
about 2GB) where I have to do a lot
of C-like fseek(), and binary data
parsing, and big to little-endian
conversion. Have to write some logic
code as well.</li>
</ol>
<p>I'm an experienced C\C++ programmer, but I thought this would be a perfect time for me to start learning about scripting.</p>
<p>Candidates that I thought of are: ( Python || Ruby ) && PowerShell.</p>
<p>Are those the kinds of things I can accomplish with, say, IronPython+Powershell? Or are there better tools/languages out there? </p>
<p>PS: Is PowerShell meant to replace VBScript? Also, what is VB.net good for anyway now that C#, WPF, and Powershell exist? </p>
http://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming/841689#8416898Answer by Johannes Rössel for Advice for Windows system scripting+programmingJohannes Rössel2009-05-08T20:40:05Z2009-05-11T06:30:04Z<p>Except for the seventh item on your list this should be fairly trivial using Powershell and WMI, as this is perhaps <em>the</em> natural domain for Powershell. Since you won't need another language for the first six list items it shouldn't really matter what you use for the last one. You probably can use PS (I've never done IO with it, though) or whatever suits you.</p>
<p>As for your second question: VBScript is probably not going to go away in the near future as the Windows Script Host is still a safer bet when writing small scripts for deployment, as it comes preinstalled on every Windows since 98. Powershell is only included in Windows 7 and later. That being said, Powershell is surely targeted at obsoleting WSH and CMD for automation purposes since it offers the same features of the aforementioned ones and much more (like easy .NET and WMI access).</p>
<p>VB.NET on the other hand is one of the primary .NET languages marketed by Microsoft. It has little to no relation to VBScript, is no competitor to Powershell or WPF (heck, those are completely different technologies). You may see some convergence with C# going on as both languages still seem to struggle a little finding their intended market. Still, VB.NET is the easiest choice of switching to .NET when you're a VB programmer and there were/are lots of them MS didn't want to lose just because they created .NET.</p>
http://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming/841707#8417074Answer by Alcides for Advice for Windows system scripting+programmingAlcides2009-05-08T20:44:40Z2009-05-08T20:44:40Z<p>You can do that in either IronPython|IronRuby or Powershell. I'd recommend IronPython since it's a real language (older than C# or even Java), with lots of support and full access to the .NET APIs you will need (or even COM APIs).</p>
<p>I'd suggest you to read this article that answers your exact question: <a href="http://pythonconquerstheuniverse.blogspot.com/2009/04/ironpython-windows-scripting-language.html" rel="nofollow">http://pythonconquerstheuniverse.blogspot.com/2009/04/ironpython-windows-scripting-language.html</a></p>
http://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming/842486#8424866Answer by aphoria for Advice for Windows system scripting+programmingaphoria2009-05-09T01:48:48Z2009-05-09T01:48:48Z<p>PowerShell can easily handle 1-6. Number 7 can probably be done in PowerShell, but there may be better options depending on the details.</p>
<p>See <a href="http://stackoverflow.com/questions/496234/what-tutorial-do-you-recommend-for-learning-powershell/496657#496657">What tutorial do you recommend for learning PowerShell?</a> for some good info on learning PowerShell.</p>
http://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming/842535#8425350Answer by Dr. Watson for Advice for Windows system scripting+programmingDr. Watson2009-05-09T02:23:23Z2009-05-09T02:23:23Z<p>I'll give you the unpopular answer then since no one else has added it: Perl.</p>
<p>If you're comfortable with the Win32 API as a C/C++ programmer, Perl may be the easier way to go. It has modules for accessing the Win32 API and Perl is quite easy for C/C++ programmers to get up to speed in. Perl has always done the job for me in the past.</p>
http://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming/844915#8449150Answer by MickTaiwan for Advice for Windows system scripting+programmingMickTaiwan2009-05-10T08:09:52Z2009-05-10T08:09:52Z<p>As for Perl, Ruby too has access to all Win32 API and WMI functions.</p>
http://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming/846012#8460121Answer by Scott Weinstein for Advice for Windows system scripting+programmingScott Weinstein2009-05-10T20:06:14Z2009-05-10T20:06:14Z<p>Powershell was designed as an automation platform for Windows. So sure, Ruby, Python, Perl, VBScript etc can do the job, why not choose the tool best for the job.
Here's how to get some basic drive info:</p>
<pre><code>$drives = Get-WmiObject -Class Win32_LogicalDisk | ? {$_.DriveType -eq 3 }
$drives | select DeviceId,VolumeName,FileSystem,FreeSpace, Size
</code></pre>
<p>Number of files in a directory</p>
<pre><code>Get-ChildItem c:\path -Recurse | Measure-Object
Get-ChildItem c:\path | Measure-Object
</code></pre>
<p>With info on file size</p>
<pre><code>Get-ChildItem c:\path -Recurse | Measure-Object -Average -Sum
-Maximum -Property Length
</code></pre>
<p>And for file processing, you can use native cmdlets such as get-content or invoke and instantiate .Net types.</p>
http://stackoverflow.com/questions/841669/advice-for-windows-system-scriptingprogramming/846371#8463714Answer by Keith Hill for Advice for Windows system scripting+programmingKeith Hill2009-05-11T00:34:00Z2009-05-11T00:54:43Z<p>I think PowerShell is <em>ideal</em> for this task because it is optimized for this sort of system information retrieval. WMI is exceptionally easy to use from PowerShell as opposed to C# IMO (and I'm a C# dev by day). Heck, let's see how easy this is from PowerShell:</p>
<pre><code>#1,2, 3 and 4
PS> Get-WmiObject Win32_LogicalDisk |
>> Format-Table Name, VolumeName, FileSystem, Size, FreeSpace -auto
Name VolumeName FileSystem Size FreeSpace
---- ---------- ---------- ---- ---------
C: NTFS 160038907904 100353536000
D:
E:
F: PDC2008 NTFS 160039239680 40155922432
V: Vista NTFS 250056704000 33944559616
#5
PS> dir <path> -r | where {!$_.PSIsContainer} | Measure-Object
#6
PS> dir <path> -r | where {!$_.PSIsContainer} |
>> Format-Table Fullname, Length -auto
</code></pre>
<p>And PowerShell can handle #7 easily via its ability to use the .NET Framework. For an example of fseek style programming in PowerShell check out this <a href="http://cid-5a8d2641e0963a97.skydrive.live.com/self.aspx/Public/Powershell%20Scripts/Tail-Content.ps1" rel="nofollow">tail-content script</a> starting around line 139.</p>