User s t - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T20:52:44Zhttp://stackoverflow.com/feeds/user/20911http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/138144/whats-in-your-powershell-profile-ps1file11What's in your Powershell profile.ps1file?s t2008-09-26T07:28:11Z2009-09-28T15:05:23Z
<p>What essential things (functions, aliases, start up scripts) do you have in your profile?</p>
http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro/452595#4525951Answer by s t for How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process?s t2009-01-17T01:08:56Z2009-01-17T01:08:56Z<p>I appreciate all the help and, especially, the warnings in this thread. However, I really do need this path and this is how I got it in the end:</p>
<p>(error checking removed for clarity, use at your own risk, etc)</p>
<pre><code>WCHAR szNativeProgramFilesFolder[MAX_PATH];
ExpandEnvironmentStrings(L"%ProgramW6432%", szNativeProgramFilesFolder, ARRAYSIZE(szNativeProgramFilesFolder);
</code></pre>
http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro1How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process?s t2009-01-14T23:52:01Z2009-01-17T01:08:56Z
<p>I need to get the path to the native (rather than the WOW) program files directory from a 32bit WOW process.</p>
<p>When I pass CSIDL_PROGRAM_FILES (or CSIDL_PROGRAM_FILESX86) into SHGetSpecialFolderPath it returns the WOW (Program Files (x86)) folder path.</p>
<p>I'd prefer to avoid using an environment variable if possible.</p>
<p>I want to compare some values I read from the registry, if the values point to the path of either the WOW or native version of my app then my code does something, if not it does something else.
To figure out where the native and WOW versions of my app are expected to be I need to get the paths to "Program Files (x86)" and "Program Files".</p>
http://stackoverflow.com/questions/302314/how-do-i-change-the-acls-on-a-registry-key-c0How do I change the ACLs on a registry key? (C++)s t2008-11-19T15:41:46Z2008-12-08T13:33:42Z
<p>I need to delete a regsitry key. It has a deny ACL on Set Value (I need this permission to delete it).</p>
<p>How do I change the ACLs in C++?</p>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/184480#1844805Answer by s t for What are some funny loading statements to keep users amused?s t2008-10-08T19:34:55Z2008-10-08T19:34:55Z<p>Checking prime directives...</p>
<ul>
<li>"Serve the public trust"</li>
<li>"Protect the innocent" </li>
<li>"Uphold the law"</li>
<li>(Classified)</li>
</ul>
http://stackoverflow.com/questions/173307/best-windows-installation-file-creator/173354#1733540Answer by s t for Best Windows Installation file Creator?s t2008-10-06T06:37:15Z2008-10-06T06:48:46Z<p>I heart <a href="http://wix.sourceforge.net/" rel="nofollow">wix</a>, MSFT's open source, declarative (XML) based toolkit for building MSIs.</p>
<p>It's ace.</p>
<p>If you want to install binaries, add reg keys and even run "custom actions" (have your own code execure during install) you should have a look at it. Then you'll have a one-click (msi) solution. Good eh? </p>
http://stackoverflow.com/questions/173328/whats-in-your-utility-toolkit/173371#1733710Answer by s t for What's in your Utility Toolkit?s t2008-10-06T06:42:35Z2008-10-06T06:42:35Z<p>wc.exe (from <a href="http://unxutils.sourceforge.net/" rel="nofollow">http://unxutils.sourceforge.net/</a>) so handy.</p>
http://stackoverflow.com/questions/173318/what-field-of-software-engineering-do-you-work-in/173346#1733462Answer by s t for What field of software engineering do you work in?s t2008-10-06T06:33:56Z2008-10-06T06:33:56Z<p>Is there a correct answer to this? :)</p>
<p>Closed source, C++, desktop application development for Windows.</p>
http://stackoverflow.com/questions/137975/what-is-so-bad-about-singletons/137982#1379829Answer by s t for What is so bad about Singletonss t2008-09-26T06:04:26Z2008-09-26T06:04:26Z<p><a href="http://steve.yegge.googlepages.com/singleton-considered-stupid" rel="nofollow">some people</a> consider them stupid :)</p>
http://stackoverflow.com/questions/137255/how-can-i-determine-if-a-remote-drive-has-enough-space-to-write-a-file-using-c/137357#1373572Answer by s t for How can I determine if a remote drive has enough space to write a file using C#?s t2008-09-26T02:06:56Z2008-09-26T02:06:56Z<p>Use WMI</p>
<pre><code>using System.Management;
// Get all the network drives (drivetype=4)
SelectQuery query = new SelectQuery("select Name, VolumeName, FreeSpace from win32_logicaldisk where drivetype=4");
ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
foreach (ManagementObject drive in searcher.Get())
{
string Name = (string)drive["Name"];
string VolumeName = (string)drive["VolumeName"];
UInt64 freeSpace = (UInt64)drive["FreeSpace"];
}
</code></pre>
<p>based on (stolen from) <a href="http://www.dreamincode.net/code/snippet1576.htm" rel="nofollow">http://www.dreamincode.net/code/snippet1576.htm</a></p>
http://stackoverflow.com/questions/131589/linux-c-programmer-to-c-windows-programmer/131601#1316013Answer by s t for Linux/C++ programmer to C#/Windows programmers t2008-09-25T05:30:17Z2008-09-25T05:30:17Z<p>Since you already know how to program in C++, check out:</p>
<p>A Programmers Introduction to C# 2.0, by Eric Gunnerson and Nick Wienholt <a href="http://rads.stackoverflow.com/amzn/click/1590595017" rel="nofollow">http://www.amazon.com/Programmers-Introduction-C-2-0-Third/dp/1590595017/ref=pd_sim_b_3/102-6809045-4740138?ie=UTF8&qid=1079114993&sr=8-1</a></p>
<p>Nice balance between language reference and general .net information.</p>
<p>Similarly:
Essential .NET, Volume I: The Common Language Runtime by Don Box and Chris Sells
<a href="http://rads.stackoverflow.com/amzn/click/0201734117" rel="nofollow">http://www.amazon.com/Essential-NET-Language-Microsoft-Development/dp/0201734117/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1222320480&sr=1-1</a></p>
<p>Really interesing "under the covers" net book (but written for .net version 1 so may be a little out of date).</p>
http://stackoverflow.com/questions/119312/dash-vs-underscore/119342#1193426Answer by s t for Dash vs. Underscores t2008-09-23T06:11:22Z2008-09-23T06:11:22Z<p>Jeff has some thoughts on this: <a href="http://www.codinghorror.com/blog/archives/000574.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000574.html</a></p>
<p>There are drawbacks to both. I would suggest that you pick one and be consistent.</p>
http://stackoverflow.com/questions/611565/mapped-drive-system-cannot-find-the-drive-specifiedComment by s t on Mapped Drive - "System cannot find the drive specified"s t2009-03-04T17:27:06Z2009-03-04T17:27:06ZI think this is probably because explorer.exe is running as non-admin and cmd.exe is running as admin.
running
net use * \\wp3
at the command line should map it for the administrator.
http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro/445218#445218Comment by s t on How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process?s t2009-01-17T01:12:17Z2009-01-17T01:12:17ZGood point, well made. This is potenitally dangerous territory and we should be aware of the risks.http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-proComment by s t on How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process?s t2009-01-17T01:10:28Z2009-01-17T01:10:28ZTotally, but in this case it really will be in the program files folder.http://stackoverflow.com/questions/445139/how-to-get-program-files-folder-path-not-program-files-x86-from-32bit-wow-pro/445219#445219Comment by s t on How to get Program Files folder path (not Program Files (x86)) from 32bit WOW process?s t2009-01-15T00:51:13Z2009-01-15T00:51:13ZI just hit that problem, I need it to work on XP and Server 2003 x64 too.http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/184138#184138Comment by s t on What Programming Book would you NOT recommend to Developers?s t2008-10-08T19:37:28Z2008-10-08T19:37:28ZTitle promised more than it delived :(http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/83753#83753Comment by s t on What is the single most influential book every programmer should read?s t2008-09-26T06:51:24Z2008-09-26T06:51:24ZOver a week and no upvotes for this?
For shame, StackOverflow, for shame!
Code Complete is probably more important but this made me write better code as soon as I started reading it. http://stackoverflow.com/questions/137921/what-is-your-single-most-effective-interview-question/137927#137927Comment by s t on What is your single most effective interview question?s t2008-09-26T05:51:18Z2008-09-26T05:51:18ZI'm here for the interview, chief! :)
http://stackoverflow.com/questions/8170/best-windows-command-line-tutorial-for-beginners/8871#8871Comment by s t on Best Windows Command Line tutorial for beginners?s t2008-09-25T23:08:31Z2008-09-25T23:08:31ZPowerShell in Action is great!