gpt4 book ai didi

powershell - 在 Powershell 2.0 中清除公共(public) MSMQ 队列

转载 作者:行者123 更新时间:2023-12-02 22:43:32 24 4
gpt4 key购买 nike

我找到了这篇文章 Purge MSMQ queue and reset IIS from a bat file

清除私有(private) MSMQ 队列。我以为我可以通过将 Private 更改为 Public 来调整它以清除公共(public)队列,但它失败了。

如何在 Powershell 2.0 中清除公共(public) MSMQ 队列?

谢谢!

最佳答案

知道了,我必须删除 private$ 而不是更改它。

这样就可以了:

[Reflection.Assembly]::LoadWithPartialName("System.Messaging")
$queueName = '.\testQueue'
$queue = new-object -TypeName System.Messaging.MessageQueue -ArgumentList $queueName
$queue.Purge()

关于powershell - 在 Powershell 2.0 中清除公共(public) MSMQ 队列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33830872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com