<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://powershell.com/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>General</title><link>http://powershell.com/cs/forums/73.aspx</link><description>A place to discuss general PowerShell topics that don't fit in the other "Using PowerShell" forums.</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 (Build: 30929.2835)</generator><item><title>Re: Using the @ sign in a string</title><link>http://powershell.com/cs/forums/thread/15674.aspx</link><pubDate>Thu, 29 Mar 2012 11:07:14 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15674</guid><dc:creator>Scott Rowe</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15674.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=230&amp;PostID=15674</wfw:commentRss><description>&lt;p&gt;I figured it out last night. I needed to send the &amp;quot;@c:\some.txt&amp;quot; as an argument and not part of the command. Now it works.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thx,&lt;/p&gt;
&lt;p&gt;Scott Rowe&lt;/p&gt;
&lt;p&gt;@sprowe&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Using the @ sign in a string</title><link>http://powershell.com/cs/forums/thread/15671.aspx</link><pubDate>Thu, 29 Mar 2012 08:58:00 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15671</guid><dc:creator>freakling</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15671.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=230&amp;PostID=15671</wfw:commentRss><description>&lt;p&gt;Does it work when using &amp;#39;&amp;#39; around? like so: Invoke-Item &amp;#39;c:\some.exe @c:\some.txt&amp;#39; or perhaps&amp;nbsp;&amp;nbsp;Invoke-Item c:\some.exe &amp;#39;@c:\some.txt&amp;#39;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Using the @ sign in a string</title><link>http://powershell.com/cs/forums/thread/15547.aspx</link><pubDate>Mon, 26 Mar 2012 20:28:26 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15547</guid><dc:creator>Scott Rowe</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15547.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=230&amp;PostID=15547</wfw:commentRss><description>&lt;p&gt;The program needs it to read in a parm list. I wish there was another way.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thx,&lt;/p&gt;
&lt;p&gt;Scott Rowe&lt;/p&gt;
&lt;p&gt;@SPRowe&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Using the @ sign in a string</title><link>http://powershell.com/cs/forums/thread/15545.aspx</link><pubDate>Mon, 26 Mar 2012 14:42:37 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15545</guid><dc:creator>Richard Giles</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15545.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=230&amp;PostID=15545</wfw:commentRss><description>&lt;p&gt;Invoke-Item is expecting an executable and/or file path spec&amp;nbsp;to run an executable or open files&amp;nbsp;like this :&lt;/p&gt;
&lt;p&gt;C:\mydir\calc.exe&lt;/p&gt;
&lt;p&gt;C:\mydir\*.txt&lt;/p&gt;
&lt;p&gt;What is the significance of using the &amp;quot;@&amp;quot; symbol in your use case?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Using the @ sign in a string</title><link>http://powershell.com/cs/forums/thread/15537.aspx</link><pubDate>Sun, 25 Mar 2012 20:41:10 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15537</guid><dc:creator>Scott Rowe</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15537.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=230&amp;PostID=15537</wfw:commentRss><description>&lt;p&gt;I need to use the @ in a command line. The command needs to look like this:&lt;/p&gt;
&lt;p&gt;c:\some.exe @c:\some.txt&lt;/p&gt;
&lt;p&gt;I can put it in a&amp;nbsp;variable fine and it writes to the screen fine but when I try to use it in a Invoke-Item, I get this error:&lt;/p&gt;
&lt;p&gt;Invoke-Item : The given path&amp;#39;s format is not supported.&lt;/p&gt;
&lt;p&gt;I know it&amp;#39;s the @ giving the issue because when I remove it the program runs.&lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;
&lt;p&gt;Thx,&lt;/p&gt;
&lt;p&gt;Scott&lt;/p&gt;
&lt;p&gt;@sprowe&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>