<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell</id>
  <title type="text">microsoft.public.windows.powershell Google Group</title>
  <subtitle type="text">
  Microsoft Windows newsgroup.
  </subtitle>
  <link href="/group/microsoft.public.windows.powershell/feed/atom_v1_0_msgs.xml" rel="self" title="microsoft.public.windows.powershell feed"/>
  <updated>2010-03-20T03:31:01Z</updated>
  <generator uri="http://groups.google.nl" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>PaulChavez</name>
  <email>paulcha...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-20T03:31:01Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/35afbcc6bb4c0ee1/7e3feb9905998cd8?show_docid=7e3feb9905998cd8</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/35afbcc6bb4c0ee1/7e3feb9905998cd8?show_docid=7e3feb9905998cd8"/>
  <title type="text">RE: Need help converting &quot;InstalledOn&quot; date for all Win32_QuickFixEngi</title>
  <summary type="html" xml:space="preserve">
  get-wmiobject win32_quickfixengineering | &lt;br&gt; where-object {$_.Description} | &lt;br&gt; select-object HotFixID, Description, InstalledOn | &lt;br&gt; Export-CSV c:\HotfixInfo.csv
  </summary>
  </entry>
  <entry>
  <author>
  <name>Joe Morris</name>
  <email>j.c.mor...@verizon.net</email>
  </author>
  <updated>2010-03-20T02:07:21Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/8f2e133d0d28f310/874d55de2bf911fb?show_docid=874d55de2bf911fb</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/8f2e133d0d28f310/874d55de2bf911fb?show_docid=874d55de2bf911fb"/>
  <title type="text">Re: Root certificate not trusted when running as scheduled task</title>
  <summary type="html" xml:space="preserve">
  Perhaps I should have asked the question differently. Was the code-signing &lt;br&gt; certificate you used issued by the root certificate server, or was it issued &lt;br&gt; by a second-tier CA? More to the point, are the public keys associated with &lt;br&gt; the cert chain leading to the code-signing certificate the same as are used
  </summary>
  </entry>
  <entry>
  <author>
  <name>Larry__Weiss</name>
  <email>l...@airmail.net</email>
  </author>
  <updated>2010-03-19T22:37:12Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/bb5c1872ee31cc60/d85ef8f3bb27fdfc?show_docid=d85ef8f3bb27fdfc</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/bb5c1872ee31cc60/d85ef8f3bb27fdfc?show_docid=d85ef8f3bb27fdfc"/>
  <title type="text">Re: Write-host in a function, no newline</title>
  <summary type="html" xml:space="preserve">
  You need to use spaces instead of commas as the argument separator &lt;br&gt; SQLquery(&#39;a&#39; &#39;b&#39; &#39;c&#39;) &lt;br&gt; It&#39;s something yo just have to get used to. &lt;br&gt; With commas you were sending the function a single argument whose value was an &lt;br&gt; array containing three strings. &lt;br&gt; - Larry
  </summary>
  </entry>
  <entry>
  <author>
  <name>Personne</name>
  <email>cpdiv...@gmail.com</email>
  </author>
  <updated>2010-03-19T22:27:58Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/bb5c1872ee31cc60/1bb354429854ad22?show_docid=1bb354429854ad22</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/bb5c1872ee31cc60/1bb354429854ad22?show_docid=1bb354429854ad22"/>
  <title type="text">Re: Write-host in a function, no newline</title>
  <summary type="html" xml:space="preserve">
  My mistake. &lt;br&gt; SQLquery(&#39;a&#39;,&#39;b&#39;,&#39;c&#39;) needs to be SQLquery &#39;a&#39; &#39;b&#39; &#39;c&#39; &lt;br&gt; no parentheses, no comma
  </summary>
  </entry>
  <entry>
  <author>
  <name>Personne</name>
  <email>cpdiv...@gmail.com</email>
  </author>
  <updated>2010-03-19T22:21:28Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/bb5c1872ee31cc60/db5cde1fecd2e2da?show_docid=db5cde1fecd2e2da</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/bb5c1872ee31cc60/db5cde1fecd2e2da?show_docid=db5cde1fecd2e2da"/>
  <title type="text">Write-host in a function, no newline</title>
  <summary type="html" xml:space="preserve">
  I&#39;m trying to create a very basic function &lt;br&gt; function SQLquery ([string]$SQLserver,[string]$S QLCatalog,[string] &lt;br&gt; $SQLQuery) &lt;br&gt; { &lt;br&gt; write-host -fore yellow $SQLserver; &lt;br&gt; write-host -fore red $SQLCatalog; &lt;br&gt; write-host -fore cyan $SQLQuery; &lt;br&gt; write-host &amp;quot;test&amp;quot; &lt;br&gt; write-host &amp;quot;test2&amp;quot; &lt;br&gt; write-host &amp;quot;test3&amp;quot; &lt;br&gt; SQLquery(&#39;a&#39;,&#39;b&#39;,&#39;c&#39;)
  </summary>
  </entry>
  <entry>
  <author>
  <name>MikeBlane</name>
  <email>gu...@unknown-email.com</email>
  </author>
  <updated>2010-03-19T20:57:59Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/35afbcc6bb4c0ee1/026bc9debdc61d4e?show_docid=026bc9debdc61d4e</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/35afbcc6bb4c0ee1/026bc9debdc61d4e?show_docid=026bc9debdc61d4e"/>
  <title type="text">Need help converting &quot;InstalledOn&quot; date for all Win32_QuickFixEngineering entries</title>
  <summary type="html" xml:space="preserve">
  Hello, all. I&#39;m new to Powershell scripting, but have used VBScript for &lt;br&gt; years. I&#39;ve found that there is no way in VBScript to do the following &lt;br&gt; and am hoping someone can help with a PowerShell script for the &lt;br&gt; following: &lt;br&gt; I need to be able to document all of the HotFixIDs, their &lt;br&gt; description, and the date that the HotFixes were installed. I want this
  </summary>
  </entry>
  <entry>
  <author>
  <name>PaulChavez</name>
  <email>paulcha...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-19T20:19:02Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/1db4f6f510935ed9/f3c2e4e736b373f7?show_docid=f3c2e4e736b373f7</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/1db4f6f510935ed9/f3c2e4e736b373f7?show_docid=f3c2e4e736b373f7"/>
  <title type="text">RE: Powershell ISE</title>
  <summary type="html" xml:space="preserve">
  As far as i know there is no way to provide parameters to a script you&#39;re &lt;br&gt; running directly from the editor window using F5 or Debug-&amp;gt;Run. &lt;br&gt; You can run the script from the interactive command window built into the &lt;br&gt; ISE, and if you&#39;ve set a breakpoint in the editor it will stop at the &lt;br&gt; breakpoint even if you didn&#39;t explicitly run it from the menu.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Chris Dent</name>
  <email>ch...@no-mail.null</email>
  </author>
  <updated>2010-03-19T20:00:46Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/e2e7875b344e3094/eb84c23cef3868f1?show_docid=eb84c23cef3868f1</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/e2e7875b344e3094/eb84c23cef3868f1?show_docid=eb84c23cef3868f1"/>
  <title type="text">Re: adding smtp address for all users containing the employeeID field</title>
  <summary type="html" xml:space="preserve">
  Something like this should work. It&#39;s a bit silly, but it&#39;s easier to &lt;br&gt; add e-mail addresses using ADSI unless I&#39;m missing something glaringly &lt;br&gt; obvious about Set-Mailbox. &lt;br&gt; Get-Mailbox -ResultSize Unlimited -Filter {employeeID -eq &amp;quot;&amp;lt;number&amp;gt;&amp;quot;} | %{ &lt;br&gt; $User = Get-User $_ &lt;br&gt; $NewSmtp = &amp;quot;{...@somedomain.com&amp;quot; -f $User.employeeID
  </summary>
  </entry>
  <entry>
  <author>
  <name>David Trimboli</name>
  <email>trimb...@cshl.edu</email>
  </author>
  <updated>2010-03-19T19:39:51Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/8c493c1c266db5d3/7f713ac152a9416f?show_docid=7f713ac152a9416f</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/8c493c1c266db5d3/7f713ac152a9416f?show_docid=7f713ac152a9416f"/>
  <title type="text">Re: Deploy WinRM, PS2.0, BITS4 to 1000 different machines?</title>
  <summary type="html" xml:space="preserve">
  We used WSUS to deploy these. WSUS automatically takes all the necessary &lt;br&gt; steps. You would also be able to control all other updates centrally.
  </summary>
  </entry>
  <entry>
  <author>
  <name>RichS [ MVP ]</name>
  <email>richs...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-19T19:10:06Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/1db4f6f510935ed9/343a93f696a9aa50?show_docid=343a93f696a9aa50</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/1db4f6f510935ed9/343a93f696a9aa50?show_docid=343a93f696a9aa50"/>
  <title type="text">RE: Powershell ISE</title>
  <summary type="html" xml:space="preserve">
  If you have ISE open the bottom pane is usually an interactive pane that you &lt;br&gt; can use to do stuff interactively
  </summary>
  </entry>
  <entry>
  <author>
  <name>Austin Kalamazoo</name>
  <email>austinkalama...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-19T18:21:01Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/8f2e133d0d28f310/56f82eab3320b467?show_docid=56f82eab3320b467</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/8f2e133d0d28f310/56f82eab3320b467?show_docid=56f82eab3320b467"/>
  <title type="text">Re: Root certificate not trusted when running as scheduled task</title>
  <summary type="html" xml:space="preserve">
  Joe, thanks for replying. &lt;br&gt; The CA is our enterprise certificate server. All machines in the enterprise &lt;br&gt; have it as a Trusted CA. The CA issued the code signing cert. &lt;br&gt; Yes, although I have to admit I was surprised by this. &lt;br&gt; The code signing cert is stored in the &amp;quot;Trusted Publisher&#39;s&amp;quot; store. &lt;br&gt; When I first ran the script from the command line, PowerShell asked me: &amp;quot;Do
  </summary>
  </entry>
  <entry>
  <author>
  <name>rayala</name>
  <email>gu...@unknown-email.com</email>
  </author>
  <updated>2010-03-19T18:05:16Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/adb44f4fdf091bbb/1f7e020caaf225c8?show_docid=1f7e020caaf225c8</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/adb44f4fdf091bbb/1f7e020caaf225c8?show_docid=1f7e020caaf225c8"/>
  <title type="text">Re: Search for installed patches</title>
  <summary type="html" xml:space="preserve">
  Question for IT Staff: &lt;br&gt; This works great but I would like to view the output on a HTML file. &lt;br&gt; This &lt;br&gt; way I can check via a website the report. I am still learning &lt;br&gt; Powershell, so &lt;br&gt; would you be able explain how i can take your script here and write it &lt;br&gt; to a &lt;br&gt; column\table formatted html file.. I would really appreciate it..
  </summary>
  </entry>
  <entry>
  <author>
  <name>Rob</name>
  <email>r...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-19T17:56:02Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/adb44f4fdf091bbb/fa93ff8661edea1b?show_docid=fa93ff8661edea1b</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/adb44f4fdf091bbb/fa93ff8661edea1b?show_docid=fa93ff8661edea1b"/>
  <title type="text">Re: Search for installed patches</title>
  <summary type="html" xml:space="preserve">
  Question for IT Staff: &lt;br&gt; This works great but I would like to view the output on a HTML file. This &lt;br&gt; way I can check via a website the report. I am still learning Powershell, so &lt;br&gt; would you be able explain how i can take your script here and write it to a &lt;br&gt; column\table formatted html file.. I would really appreciate it..
  </summary>
  </entry>
  <entry>
  <author>
  <name>Tim Munro</name>
  <email>excels...@liamtoh.moc</email>
  </author>
  <updated>2010-03-19T17:37:24Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/1db4f6f510935ed9/91f81609d4ae0042?show_docid=91f81609d4ae0042</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/1db4f6f510935ed9/91f81609d4ae0042?show_docid=91f81609d4ae0042"/>
  <title type="text">Powershell ISE</title>
  <summary type="html" xml:space="preserve">
  Hi all, &lt;br&gt; I decided to give the Powershell ISE a try (I&#39;m currently a Powershell &lt;br&gt; GUI Scipt Editor user). The first thing I tried to do, I could not. The &lt;br&gt; first line in my script is a &amp;quot;param&amp;quot; statement. How can I enter the &lt;br&gt; appropriate &amp;quot;params&amp;quot; to ISE so my script will see them? &lt;br&gt; Thanks
  </summary>
  </entry>
  <entry>
  <author>
  <name>Marco Shaw [MVP]</name>
  <email>marco.s...@no_spamgmail.com</email>
  </author>
  <updated>2010-03-19T16:59:55Z</updated>
  <id>http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/8c493c1c266db5d3/35350d725d3da793?show_docid=35350d725d3da793</id>
  <link href="http://groups.google.nl/group/microsoft.public.windows.powershell/browse_thread/thread/8c493c1c266db5d3/35350d725d3da793?show_docid=35350d725d3da793"/>
  <title type="text">Re: Deploy WinRM, PS2.0, BITS4 to 1000 different machines?</title>
  <summary type="html" xml:space="preserve">
  With these many machines, do you have an existing tool for automating &lt;br&gt; deployments? &lt;br&gt; Are these connected to AD? Maybe a logon script would kick off this &lt;br&gt; check/installation... &lt;br&gt; Marco
  </summary>
  </entry>
</feed>
