Board index » Visual Studio » Transactional MSMQ
|
K2007B
|
|
K2007B
|
Transactional MSMQ
Visual Studio329
I need to create a transactional msmq using vb script. The queue is created but not as a transactional one. Can anyone help? On Error Resume Next Dim Queue Set Queue = CreateObject("MSMQ.MSMQQueueInfo") Queue.PathName = ".\private$\MyQ" Queue.Create IsTransactional = True queue.label="MyQLabel" Thank you - |
| Torgeir
Registered User |
Mon Oct 04 13:06:33 CDT 2004
Re:Transactional MSMQ
Frank Ashley wrote:
QuoteI need to create a transactional msmq using vb script. The queue Queue.Create True Quotequeue.label="MyQLabel" -- torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway Administration scripting examples and an ONLINE version of the 1328 page Scripting Guide: www.microsoft.com/technet/scriptcenter/default.mspx">www.microsoft.com/technet/scriptcenter/default.mspx - |
