![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | MSMQ Usage in PS I am attempting to access a MSMQ queue and keep getting told that the System.Messaging namespace is not loaded whcih is agravating because it appears to load fine. Are there any restrictions with MSMQ and PS? Here is the first part of my script, it fails on the New-Object System.Messaging line. "Loading Assembly..." [System.Reflection.Assembly]::LoadWithPartialName("System.Messaging") "Opening Queue" $queue = New-Object System.Messaging(".\Private$\testq") $queue.Formatter = New-Object System.Messaging.BinaryMessageFormatter The error message is: New-Object : Cannot find type [System.Messaging]: make sure the assembly containing this type is loaded. At C:\source\test.ps1:5 char:20 + $queue = New-Object <<<< System.Messaging(".\Private$\testq") ANY help would be appreciated |
My System Specs![]() |
| | #2 (permalink) |
| | Re: MSMQ Usage in PS Hi Andrew, > The error message is: > New-Object : Cannot find type [System.Messaging]: make sure the assembly > containing this type is loaded. > At C:\source\test.ps1:5 char:20 > + $queue = New-Object <<<< System.Messaging(".\Private$\testq") > > ANY help would be appreciated System.Messaging is a namespace not an typename. So I guess you are looking for something like this: New-Object -TypeName "System.Messaging.MessageQueue" -ArgumentList ".\Private$\testq" hth Max |
My System Specs![]() |
| | #3 (permalink) |
| | Re: MSMQ Usage in PS Or use: $queue = new-object System.Messaging.MessageQueue(".\Private$\testq"); |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| MSMQ Monitoring script | VB Script | |||
| secure msmq | .NET General | |||
| Re: MSMQ Peek not working right | PowerShell | |||
| [MSMQ]Shell for basic opeartions with MSMQ ? | PowerShell | |||