Wednesday, January 14, 2015

windows - Starting a batch file with spaces / quotation marks preventing the batch from running



I have this simple batch script. Lets call it 'Hello World.bat':



echo "Hello World!"



In a command line, running



cmd /c start "C:\path\to\Hello World.bat"


causes the a new command line window to show up, but the code in the .bat file is not executed.



I can rename this bat file to Hello_World.bat, remove the quotes from the command line command, and it works fine. However, with the quotes (which are necessary due to the spaces), it will not work.




Any suggestions? The application I'm working on calls customer-placed batch files, so unfortunately just renaming it isn't an option.


Answer



The Start command actually requires you to put in a title parameter like this:



start [""] [/d <path>]<br/></code></pre><br/><br/><p>You can get around this by adding an empty " " before the path to your file, like this:</p><br/><br/><br/><pre><code>cmd start "" /c "C:\path\to\Hello World.bat"<br/></code></pre><br/>    </div>
<div style='clear: both;'></div>
</div>
<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>
<span class='post-author vcard'>
</span>
<span class='post-timestamp'>
-
<meta content='https://stspru.blogspot.com/2015/01/windows-starting-batch-file-with-spaces.html' itemprop='url'/>
<a class='timestamp-link' href='https://stspru.blogspot.com/2015/01/windows-starting-batch-file-with-spaces.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2015-01-14T11:36:00-08:00'>January 14, 2015</abbr></a>
</span>
<span class='post-comment-link'>
</span>
<span class='post-icons'>
<span class='item-control blog-admin pid-1204700713'>
<a href='https://www.blogger.com/post-edit.g?blogID=1095981230728817725&postID=2602251960586516427&from=pencil' title='Edit Post'>
<img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/>
</a>
</span>
</span>
<div class='post-share-buttons goog-inline-block'>
<a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=1095981230728817725&postID=2602251960586516427&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=1095981230728817725&postID=2602251960586516427&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=1095981230728817725&postID=2602251960586516427&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=1095981230728817725&postID=2602251960586516427&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=1095981230728817725&postID=2602251960586516427&target=pinterest' target='_blank' title='Share to Pinterest'><span class='share-button-link-text'>Share to Pinterest</span></a>
</div>
</div>
<div class='post-footer-line post-footer-line-2'>
<span class='post-labels'>
</span>
</div>
<div class='post-footer-line post-footer-line-3'>
<span class='post-location'>
</span>
</div>
</div>
</div>
<div class='comments' id='comments'>
<a name='comments'></a>
<h4>No comments:</h4>
<div id='Blog1_comments-block-wrapper'>
<dl class='avatar-comment-indent' id='comments-block'>
</dl>
</div>
<p class='comment-footer'>
<div class='comment-form'>
<a name='comment-form'></a>
<h4 id='comment-post-message'>Post a Comment</h4>
<p>
</p>
<a href='https://www.blogger.com/comment/frame/1095981230728817725?po=2602251960586516427&hl=en&saa=85391&origin=https://stspru.blogspot.com' id='comment-editor-src'></a>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' width='100%'></iframe>
<script src='https://www.blogger.com/static/v1/jsbin/1345082660-comment_from_post_iframe.js' type='text/javascript'></script>
<script type='text/javascript'>
      BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html');
    </script>
</div>
</p>
</div>
</div>

        </div></div>
      
</div>
<div class='blog-pager' id='blog-pager'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' href='https://stspru.blogspot.com/2015/01/linux-how-to-ssh-to-ec2-instance-in-vpc.html' id='Blog1_blog-pager-newer-link' title='Newer Post'>Newer Post</a>
</span>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' href='https://stspru.blogspot.com/2015/01/command-line-http-server-for-windows.html' id='Blog1_blog-pager-older-link' title='Older Post'>Older Post</a>
</span>
<a class='home-link' href='https://stspru.blogspot.com/'>Home</a>
</div>
<div class='clear'></div>
<div class='post-feeds'>
<div class='feed-links'>
Subscribe to:
<a class='feed-link' href='https://stspru.blogspot.com/feeds/2602251960586516427/comments/default' target='_blank' type='application/atom+xml'>Post Comments (Atom)</a>
</div>
</div>
</div><div class='widget FeaturedPost' data-version='1' id='FeaturedPost1'>
<div class='post-summary'>
<h3><a href='https://stspru.blogspot.com/2020/01/linux-how-to-ssh-to-ec2-instance-in-vpc.html'>linux - How to SSH to ec2 instance in VPC private subnet via NAT server</a></h3>
<p>
I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...
</p>
</div>
<style type='text/css'>
    .image {
      width: 100%;
    }
  </style>
<div class='clear'></div>
</div><div class='widget PopularPosts' data-version='1' id='PopularPosts1'>
<div class='widget-content popular-posts'>
<ul>
<li>
<div class='item-content'>
<div class='item-title'><a href='https://stspru.blogspot.com/2017/07/how-to-create-non-clustered-indexes-on.html'>How to create non-clustered indexes on a SQL Server 2008 database?
Preferably without code?</a></div>
<div class='item-snippet'>I would appreciate help on how to create non-clustered indexes on a SQL Server 2008 database without using code--or rather, 'statically...</div>
</div>
<div style='clear: both;'></div>
</li>
<li>
<div class='item-content'>
<div class='item-title'><a href='https://stspru.blogspot.com/2015/06/configuring-bind-for-serving-as.html'>Configuring Bind for serving as nameserver for multiple domains</a></div>
<div class='item-snippet'>I have installed bind9 on a Debian VPS, and use it as nameserver for one of my domains. It works well. dig reports correct entries. I now wi...</div>
</div>
<div style='clear: both;'></div>
</li>
<li>
<div class='item-content'>
<div class='item-title'><a href='https://stspru.blogspot.com/2015/05/apache-22-rewriterule-not-working-with.html'>apache 2.2 - RewriteRule not working with mod_userdir</a></div>
<div class='item-snippet'>My setup: Ubuntu 13.04 Apache/2.2.22 (Ubuntu) PHP 5.4.9-4ubuntu2.2 -- $ ls /etc/apache2/mods-enabled/*.load alias.load           auth_basic....</div>
</div>
<div style='clear: both;'></div>
</li>
<li>
<div class='item-content'>
<div class='item-title'><a href='https://stspru.blogspot.com/2016/06/nginx-rewrite-for-subdomain-to-folder.html'>Nginx: rewrite for subdomain to folder AND files inside it</a></div>
<div class='item-snippet'>I have nginx rewrite rule - it redirects all subdomain requests from sub to folder: server { listen      77.77.77.77:80; server_name domainc...</div>
</div>
<div style='clear: both;'></div>
</li>
<li>
<div class='item-content'>
<div class='item-title'><a href='https://stspru.blogspot.com/2015/08/bind-possible-to-see-remaining-dns.html'>bind - possible to see remaining DNS negative cache for domain?</a></div>
<div class='item-snippet'>For normal DNS lookups, one can use Dig to get an answer including the remaining TTL for a DNS record. If that answer is from a cache, the T...</div>
</div>
<div style='clear: both;'></div>
</li>
<li>
<div class='item-content'>
<div class='item-thumbnail'>
<a href='https://stspru.blogspot.com/2014/07/how-do-i-repair-corrupted-files-found.html' target='_blank'>
<img alt='' border='0' src='https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_vOaZC9w94nb3F-7b1yDIlTwBXtU8pnL_kGt6uLYrImGgdQxFYRvXm1TmeX8udlZipLdv2u9NoKoi4FtfNigwLvEcB1O21T=w72-h72-p-k-no-nu'/>
</a>
</div>
<div class='item-title'><a href='https://stspru.blogspot.com/2014/07/how-do-i-repair-corrupted-files-found.html'>How do I repair the corrupted files found by sfc /scannow? "Windows
Resource Protection found corrupt files but was unable to fix some of
them."</a></div>
<div class='item-snippet'>In Windows 7 , after running chkdsk C: /F /R  and finding out that my hard disk has 24 KB in bad sectors (log is posted below), I decided to...</div>
</div>
<div style='clear: both;'></div>
</li>
<li>
<div class='item-content'>
<div class='item-title'><a href='https://stspru.blogspot.com/2018/11/multiple-wildcard-certificates-on-one.html'>Multiple wildcard certificates on one IIS site?</a></div>
<div class='item-snippet'>We already have an SSL certificate for *.foo.com pointing to an IIS site. Now we want to point *.bar.co.nz point to the same web application...</div>
</div>
<div style='clear: both;'></div>
</li>
</ul>
<div class='clear'></div>
</div>
</div></div>
</div>
</div>
<div class='column-left-outer'>
<div class='column-left-inner'>
<aside>
</aside>
</div>
</div>
<div class='column-right-outer'>
<div class='column-right-inner'>
<aside>
<div class='sidebar section' id='sidebar-right-1'><div class='widget BlogSearch' data-version='1' id='BlogSearch1'>
<h2 class='title'>Search This Blog</h2>
<div class='widget-content'>
<div id='BlogSearch1_form'>
<form action='https://stspru.blogspot.com/search' class='gsc-search-box' target='_top'>
<table cellpadding='0' cellspacing='0' class='gsc-search-box'>
<tbody>
<tr>
<td class='gsc-input'>
<input autocomplete='off' class='gsc-input' name='q' size='10' title='search' type='text' value=''/>
</td>
<td class='gsc-search-button'>
<input class='gsc-search-button' title='search' type='submit' value='Search'/>
</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<div class='clear'></div>
</div><div class='widget BlogArchive' data-version='1' id='BlogArchive1'>
<h2>Blog Archive</h2>
<div class='widget-content'>
<div id='ArchiveList'>
<div id='BlogArchive1_ArchiveList'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2020/'>
2020
</a>
<span class='post-count' dir='ltr'>(19)</span>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2020/01/'>
January 2020
</a>
<span class='post-count' dir='ltr'>(19)</span>
</li>
</ul>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/'>
2019
</a>
<span class='post-count' dir='ltr'>(485)</span>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/12/'>
December 2019
</a>
<span class='post-count' dir='ltr'>(31)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/11/'>
November 2019
</a>
<span class='post-count' dir='ltr'>(34)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/10/'>
October 2019
</a>
<span class='post-count' dir='ltr'>(42)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/09/'>
September 2019
</a>
<span class='post-count' dir='ltr'>(34)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/08/'>
August 2019
</a>
<span class='post-count' dir='ltr'>(36)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/07/'>
July 2019
</a>
<span class='post-count' dir='ltr'>(44)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/06/'>
June 2019
</a>
<span class='post-count' dir='ltr'>(39)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/05/'>
May 2019
</a>
<span class='post-count' dir='ltr'>(38)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/04/'>
April 2019
</a>
<span class='post-count' dir='ltr'>(62)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/03/'>
March 2019
</a>
<span class='post-count' dir='ltr'>(34)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/02/'>
February 2019
</a>
<span class='post-count' dir='ltr'>(43)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2019/01/'>
January 2019
</a>
<span class='post-count' dir='ltr'>(48)</span>
</li>
</ul>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/'>
2018
</a>
<span class='post-count' dir='ltr'>(610)</span>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/12/'>
December 2018
</a>
<span class='post-count' dir='ltr'>(38)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/11/'>
November 2018
</a>
<span class='post-count' dir='ltr'>(49)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/10/'>
October 2018
</a>
<span class='post-count' dir='ltr'>(50)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/09/'>
September 2018
</a>
<span class='post-count' dir='ltr'>(35)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/08/'>
August 2018
</a>
<span class='post-count' dir='ltr'>(56)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/07/'>
July 2018
</a>
<span class='post-count' dir='ltr'>(50)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/06/'>
June 2018
</a>
<span class='post-count' dir='ltr'>(48)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/05/'>
May 2018
</a>
<span class='post-count' dir='ltr'>(60)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/04/'>
April 2018
</a>
<span class='post-count' dir='ltr'>(56)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/03/'>
March 2018
</a>
<span class='post-count' dir='ltr'>(57)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/02/'>
February 2018
</a>
<span class='post-count' dir='ltr'>(51)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2018/01/'>
January 2018
</a>
<span class='post-count' dir='ltr'>(60)</span>
</li>
</ul>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/'>
2017
</a>
<span class='post-count' dir='ltr'>(745)</span>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/12/'>
December 2017
</a>
<span class='post-count' dir='ltr'>(54)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/11/'>
November 2017
</a>
<span class='post-count' dir='ltr'>(55)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/10/'>
October 2017
</a>
<span class='post-count' dir='ltr'>(58)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/09/'>
September 2017
</a>
<span class='post-count' dir='ltr'>(65)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/08/'>
August 2017
</a>
<span class='post-count' dir='ltr'>(61)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/07/'>
July 2017
</a>
<span class='post-count' dir='ltr'>(57)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/06/'>
June 2017
</a>
<span class='post-count' dir='ltr'>(59)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/05/'>
May 2017
</a>
<span class='post-count' dir='ltr'>(67)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/04/'>
April 2017
</a>
<span class='post-count' dir='ltr'>(48)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/03/'>
March 2017
</a>
<span class='post-count' dir='ltr'>(66)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/02/'>
February 2017
</a>
<span class='post-count' dir='ltr'>(78)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2017/01/'>
January 2017
</a>
<span class='post-count' dir='ltr'>(77)</span>
</li>
</ul>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/'>
2016
</a>
<span class='post-count' dir='ltr'>(928)</span>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/12/'>
December 2016
</a>
<span class='post-count' dir='ltr'>(67)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/11/'>
November 2016
</a>
<span class='post-count' dir='ltr'>(60)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/10/'>
October 2016
</a>
<span class='post-count' dir='ltr'>(65)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/09/'>
September 2016
</a>
<span class='post-count' dir='ltr'>(70)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/08/'>
August 2016
</a>
<span class='post-count' dir='ltr'>(75)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/07/'>
July 2016
</a>
<span class='post-count' dir='ltr'>(86)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/06/'>
June 2016
</a>
<span class='post-count' dir='ltr'>(92)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/05/'>
May 2016
</a>
<span class='post-count' dir='ltr'>(66)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/04/'>
April 2016
</a>
<span class='post-count' dir='ltr'>(73)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/03/'>
March 2016
</a>
<span class='post-count' dir='ltr'>(84)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/02/'>
February 2016
</a>
<span class='post-count' dir='ltr'>(81)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2016/01/'>
January 2016
</a>
<span class='post-count' dir='ltr'>(109)</span>
</li>
</ul>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate expanded'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy toggle-open'>

        ▼ 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/'>
2015
</a>
<span class='post-count' dir='ltr'>(3625)</span>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/12/'>
December 2015
</a>
<span class='post-count' dir='ltr'>(114)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/11/'>
November 2015
</a>
<span class='post-count' dir='ltr'>(301)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/10/'>
October 2015
</a>
<span class='post-count' dir='ltr'>(307)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/09/'>
September 2015
</a>
<span class='post-count' dir='ltr'>(288)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/08/'>
August 2015
</a>
<span class='post-count' dir='ltr'>(330)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/07/'>
July 2015
</a>
<span class='post-count' dir='ltr'>(295)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/06/'>
June 2015
</a>
<span class='post-count' dir='ltr'>(310)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/05/'>
May 2015
</a>
<span class='post-count' dir='ltr'>(339)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/04/'>
April 2015
</a>
<span class='post-count' dir='ltr'>(350)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/03/'>
March 2015
</a>
<span class='post-count' dir='ltr'>(328)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/02/'>
February 2015
</a>
<span class='post-count' dir='ltr'>(315)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate expanded'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy toggle-open'>

        ▼ 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2015/01/'>
January 2015
</a>
<span class='post-count' dir='ltr'>(348)</span>
<ul class='posts'>
<li><a href='https://stspru.blogspot.com/2015/01/troubleshooting-pc-freezes-after.html'>troubleshooting - PC freezes after repeated clicki...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/missing-memory-in-windows-server-2003.html'>missing memory in Windows Server 2003 x64</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/debian-performance-tuning-high-load.html'>debian - Performance Tuning a High-Load Apache Server</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/virus-recovering-infected-windows-files.html'>virus - Recovering infected Windows files?</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/ubuntu-1404-vps-won-boot-latest-kernel.html'>Ubuntu 14.04 VPS won't boot the latest kernel on XEN</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/upgrade-from-windows-7-32-bit-with.html'>Upgrade from Windows 7 32-bit with Downloadable Wi...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/boot-install-multiple-linux-from-network.html'>boot - Install multiple Linux from network</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/multi-boot-create-multiboot-usb-drive.html'>multi boot - Create a multiboot USB drive with Ubu...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-7-usb-drive-becomes-write.html'>windows 7 - USB drive becomes write protected afte...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/domain-name-system-cached-nameservers.html'>domain name system - Cached Nameservers, can I cha...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/is-there-way-to-find-out-my-windows-7.html'>Is there a way to find out my Windows 7-version wi...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/hard-drive-can-i-easily-put-ssd-in-asus.html'>hard drive - Can I easily put an SSD in an ASUS G7...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/how-to-change-on-files-in-windows-from.html'>How to change "comments" on files in windows from ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/wget-command-line-for-download-videos.html'>WGET command line for download videos</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/which-monitor-connector-dvi-or-vga.html'>Which monitor connector: DVI or VGA?</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/keyboard-i-can-bind-ctrlshiftc-shortcut.html'>keyboard - I can't bind ctrl+shift+c shortcut in d...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-xp-pushing-information-into.html'>windows xp - Pushing Information into a Networked/...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/recovering-data-from-external-hard.html'>Recovering data from external hard drive with hard...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-7-cleaning-winsxs-doesn-work.html'>windows 7 - Cleaning WinSxS- doesn't work</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/vmware-vsphere-55-any-authentication.html'>VMware vSphere 5.5 any authentication attempts fail</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/in-windows-7-wherewhat-are-if-any.html'>In Windows 7 Where/what are (if any) the settings ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/printing-word-2010-prints-white-space.html'>printing - Word 2010 prints white space (like marg...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/domain-name-system-is-it-possible-to.html'>domain name system - Is it possible to send differ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/node-js-app-with-https-via-iis-reverse.html'>Node JS app with https via IIS reverse proxy</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/power-what-kind-of-connector-is-this.html'>power - What kind of connector is this?</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/hard-drive-error-disk-read-error.html'>hard drive - Error "a disk read error occurred" on...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/how-to-make-notepad-open-file-browser.html'>How to make Notepad++ open file browser in current...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/linux-how-to-share-efi-boot-partition.html'>linux - How to share an EFI boot partition</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/linux-xf86close-hotkey-won-work.html'>linux - XF86Close hotkey won't work</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/linux-how-to-recover-data-from-heavily.html'>linux - How to recover data from heavily damaged e...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/how-to-install-windows-8-preview-from.html'>How to install Windows 8 preview from USB hard drive?</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/microsoft-excel-how-to-change.html'>microsoft excel - How to change background colour ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/partitioning-dell-xps-15-l502x-hard.html'>partitioning - Dell XPS 15 L502X hard drive Partition</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/uefi-cannot-get-my-bootable-media-to.html'>uefi - Cannot get my bootable media to boot on my ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/memory-how-can-i-make-windows-xp-use.html'>memory - How can I make Windows XP use more than 2...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/disable-hosted-network-support-in.html'>Disable hosted network support in a Windows WiFi d...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-7-administrator-command-prompt.html'>Windows 7 Administrator Command Prompt "Start in" ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-7-what-does-calibration-area.html'>windows 7 - What does "Power Calibration Area Erro...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/clone-drive-in-windows.html'>Clone drive in Windows</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/how-can-i-fully-backup-windows-linux.html'>How can I fully backup Windows, Linux and various ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/hard-drive-reset-hdd-user-password-if-i.html'>hard drive - Reset HDD user password, if I know th...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/ubuntu-can-linux-boot-from-disk-that.html'>ubuntu - Can linux boot from a disk that has no pa...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/how-to-disable-automatic-reboots-in.html'>How to *disable* automatic reboots in Windows 10 H...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-7-strange-issue-with-64-bit-os.html'>windows 7 - Strange issue with 64 bit OS</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/macos-how-to-automatically-disconnect.html'>macos - How to automatically disconnect from a wir...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/use-excel-conditional-formatting-based.html'>Use Excel conditional formatting based on display ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-new-ssd-drive-programs-on-old.html'>windows - new ssd drive - programs on old hdd- eas...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/hardware-rec-laptop-lcd-cable-serial.html'>hardware rec - Laptop lcd cable serial number</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/nginx-default-ssl-host-disable.html'>Nginx default SSL Host: Disable completely or...?</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/macos-how-can-i-remap-altgr-key-combo.html'>macos - How can I remap “Alt”+“Gr” key combo to th...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/ssl-tutorial-for-ip-based-virtual.html'>ssl - Tutorial for IP-based Virtual Hosting</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-server-2008-instructions-to.html'>windows server 2008 - Instructions to setup primar...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/microsoft-excel-how-to-get-list-of.html'>microsoft excel - How to get a list of keyboard sh...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-how-can-i-be-sure-that-no-one.html'>windows - How can I be sure that no one will try t...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/linux-ssh-accepts-publickey.html'>linux - SSH accepts publickey authetication but wo...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/routing-no-internet-access-when.html'>routing - No internet access when toggling `redire...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/boot-pxe-e61-media-test-failure-check.html'>boot - PXE-E61: Media test failure, check cable an...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/switch-windows-7-pro-to-ultimate.html'>Switch Windows 7 Pro to Ultimate</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/read-data-from-old-hard-drive-seagate.html'>Read data from old hard drive Seagate ST-1239A</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/install-retail-windows-7-ultimate-disk.html'>Install Retail Windows 7 Ultimate disk with Home P...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/iis-which-certificate-store-do-i-put.html'>iis - Which certificate store do I put a third par...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/usb-bypassing-user-account-setup-in.html'>usb - Bypassing user account setup in windows 7</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-7-how-to-create-recyclebin.html'>windows 7 - How to create a $RECYCLE.BIN folder on...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/linux-move-root-partition-lvm-to-new-ssd.html'>linux - Move the root partition (LVM) to new SSD</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-vista-workstation-lost.html'>windows vista - workstation lost connection to dom...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/cpu-are-arm-processors-fundamentally.html'>cpu - Are ARM processors fundamentally inferior to...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/email-sql-server-bulk-e-mail-using.html'>email - SQL Server - Bulk E-mail using sp_send_dbm...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-7-x86-vs-x64-windows7-on-i7.html'>windows 7 - x86 vs x64 windows7 on an i7 processor</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-xp-how-to-undo-my-raid-0-setup.html'>windows xp - how to undo my RAID 0 setup while pre...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/apache-22-cannot-open-shared-object.html'>apache 2.2 - Cannot open shared object file when r...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/ubuntu-why-is-memory-consumption-in.html'>ubuntu - Why is the memory consumption in htop not...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/macos-switching-between-keyboards-in.html'>macos - Switching between keyboards in mac - short...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/memory-on-linux-there-is-3gb1gb-kernel.html'>memory - On Linux there is a 3GB/1GB kernel option...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/active-directory-windows-domain.html'>active directory - Windows Domain controller as dns</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/networking-setting-up-multiple-linux.html'>networking - Setting up multiple linux home server...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/how-to-get-usb-hid-id-of-pressed.html'>how to get USB HID ID of pressed keyboard keys</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/autohotkey-how-to-override-keyboard.html'>Autohotkey - how to override keyboard state</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/linux-trying-to-format-sandisk-pendrive.html'>linux - Trying to format a sandisk pendrive using ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/rename-files-using-batch-file.html'>Rename files using batch file</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/cannot-install-update-kb3033929-even.html'>Cannot install update KB3033929 even with Windows SP1</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-xp-computer-in-boot-loop.html'>windows xp - Computer in boot loop</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/reinstall-windows-7-after-using-dban.html'>Reinstall Windows 7 after using DBAN?</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/http-basic-authentication-nginx-how-to.html'>http basic authentication - Nginx how to use limit...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/reinstall-windows-oem-vs-retail.html'>reinstall - Windows OEM vs retail difference</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/uefi-where-is-boot-code-and-guid.html'>UEFI Where is the boot code and GUID partition tab...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/completely-remove-user-account-and.html'>Completely remove user account and create another ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-xp-unable-to-get-deadkey.html'>windows xp - Unable to get the deadkey feature wor...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/trouble-accessing-external-hard-drive.html'>Trouble accessing external hard drive using Snow L...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/eclipse-java-version-not-recognized.html'>eclipse - Java version not recognized when JAVA_HO...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/macos-one-usb-flash-drive-to-rule-them.html'>macos - One USB flash drive to rule them all</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/error-logging-how-to-generate-cbslog.html'>error logging - How to generate a cbs.log file in ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/installing-kali-linux-stuck-at-and.html'>Installing Kali Linux, stuck at "Detect and mount ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/multi-boot-windows-7-cannot-be.html'>multi boot - Windows 7 cannot be installed on exte...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/dealing-with-duplicate-folders-in-win7.html'>Dealing with duplicate Folders in a Win7 Roaming P...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/windows-10-everything-in-english-except.html'>Windows 10: Everything in English except for Keybo...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/ubuntu-vmware-workstation-uses-all-my.html'>ubuntu - Vmware Workstation uses all my RAM</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/upgrade-laptop-hard-disk-without-losing.html'>Upgrade laptop hard disk without losing data</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/motherboard-how-can-i-be-sure-whether.html'>motherboard - How can I be sure whether my CPU is ...</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/list-of-hidden-virtual-windows-user.html'>List of Hidden / Virtual Windows User Accounts</a></li>
<li><a href='https://stspru.blogspot.com/2015/01/firefox-won-install-on-windows-10-fcu.html'>Firefox won't install on Windows 10 FCU</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2014/'>
2014
</a>
<span class='post-count' dir='ltr'>(2045)</span>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2014/12/'>
December 2014
</a>
<span class='post-count' dir='ltr'>(391)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2014/11/'>
November 2014
</a>
<span class='post-count' dir='ltr'>(387)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2014/10/'>
October 2014
</a>
<span class='post-count' dir='ltr'>(388)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2014/09/'>
September 2014
</a>
<span class='post-count' dir='ltr'>(384)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2014/08/'>
August 2014
</a>
<span class='post-count' dir='ltr'>(405)</span>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<a class='toggle' href='javascript:void(0)'>
<span class='zippy'>

        ► 
      
</span>
</a>
<a class='post-count-link' href='https://stspru.blogspot.com/2014/07/'>
July 2014
</a>
<span class='post-count' dir='ltr'>(90)</span>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class='clear'></div>
</div>
</div></div>
<table border='0' cellpadding='0' cellspacing='0' class='section-columns columns-2'>
<tbody>
<tr>
<td class='first columns-cell'>
<div class='sidebar no-items section' id='sidebar-right-2-1'></div>
</td>
<td class='columns-cell'>
<div class='sidebar no-items section' id='sidebar-right-2-2'></div>
</td>
</tr>
</tbody>
</table>
<div class='sidebar no-items section' id='sidebar-right-3'></div>
</aside>
</div>
</div>
</div>
<div style='clear: both'></div>
<!-- columns -->
</div>
<!-- main -->
</div>
</div>
<div class='main-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
<footer>
<div class='footer-outer'>
<div class='footer-cap-top cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left footer-fauxborder-left'>
<div class='fauxborder-right footer-fauxborder-right'></div>
<div class='region-inner footer-inner'>
<div class='foot no-items section' id='footer-1'></div>
<table border='0' cellpadding='0' cellspacing='0' class='section-columns columns-2'>
<tbody>
<tr>
<td class='first columns-cell'>
<div class='foot no-items section' id='footer-2-1'></div>
</td>
<td class='columns-cell'>
<div class='foot no-items section' id='footer-2-2'></div>
</td>
</tr>
</tbody>
</table>
<!-- outside of the include in order to lock Attribution widget -->
<div class='foot section' id='footer-3' name='Footer'><div class='widget Attribution' data-version='1' id='Attribution1'>
<div class='widget-content' style='text-align: center;'>
Theme images by <a href='http://www.istockphoto.com/file_closeup.php?id=9505737&platform=blogger' target='_blank'>Ollustrator</a>. Powered by <a href='https://www.blogger.com' target='_blank'>Blogger</a>.
</div>
<div class='clear'></div>
</div></div>
</div>
</div>
<div class='footer-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
</footer>
<!-- content -->
</div>
</div>
<div class='content-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
</div>
<script type='text/javascript'>
    window.setTimeout(function() {
        document.body.className = document.body.className.replace('loading', '');
      }, 10);
  </script>

<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/382300504-widgets.js"></script>
<script type='text/javascript'>
window['__wavt'] = 'AOuZoY70P6F0Aa7g-aQ1azhX-C4DbmxDMg:1766885078909';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d1095981230728817725','//stspru.blogspot.com/2015/01/windows-starting-batch-file-with-spaces.html','1095981230728817725');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '1095981230728817725', 'title': 'Blog', 'url': 'https://stspru.blogspot.com/2015/01/windows-starting-batch-file-with-spaces.html', 'canonicalUrl': 'https://stspru.blogspot.com/2015/01/windows-starting-batch-file-with-spaces.html', 'homepageUrl': 'https://stspru.blogspot.com/', 'searchUrl': 'https://stspru.blogspot.com/search', 'canonicalHomepageUrl': 'https://stspru.blogspot.com/', 'blogspotFaviconUrl': 'https://stspru.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Blog - Atom\x22 href\x3d\x22https://stspru.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Blog - RSS\x22 href\x3d\x22https://stspru.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Blog - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/1095981230728817725/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Blog - Atom\x22 href\x3d\x22https://stspru.blogspot.com/feeds/2602251960586516427/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/daef15016aa26cab', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'item', 'postId': '2602251960586516427', 'pageName': 'windows - Starting a batch file with spaces / quotation marks\npreventing the batch from running', 'pageTitle': 'Blog: windows - Starting a batch file with spaces / quotation marks\npreventing the batch from running'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'windows - Starting a batch file with spaces / quotation marks\npreventing the batch from running', 'description': 'I have this simple batch script. Lets call it \x27Hello World.bat\x27: echo \x22Hello World!\x22 In a command line, running cmd /c start \x22C:\\path\\to\\Hel...', 'url': 'https://stspru.blogspot.com/2015/01/windows-starting-batch-file-with-spaces.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 2602251960586516427}}]);
_WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2485970545-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/828616780-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_FeaturedPostView', new _WidgetInfo('FeaturedPost1', 'main', document.getElementById('FeaturedPost1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'main', document.getElementById('PopularPosts1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogSearchView', new _WidgetInfo('BlogSearch1', 'sidebar-right-1', document.getElementById('BlogSearch1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar-right-1', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer-3', document.getElementById('Attribution1'), {}, 'displayModeFull'));
</script>
</body>
</html>