2014-09-04 99 views
0

我有一個奇怪的問題。訪問被拒絕 - Powershell

在我的公司,我們使用單獨的管理員賬戶來管理所有的AD修改程序(例如,如果我的普通AD ID是User01,那麼我的管理員帳戶就是User01_adm - >這個權限可以修改廣告用戶/組)。現在,我可以進行更改,比如說使用我的adm/c從ARS Web控制檯更改登錄腳本,但是如果我在PowerShell腳本中使用相同的腳本,則會出現「Access denied」[System.UnauthorizedAccessException]。有沒有方式之間的差異,這些都是設置(Web控制檯& PowerShell控制檯?)我使用下面部分用於連接到ARS服務器與我的ADM憑據

#Connect to ARS server 
$GetCreds = Get-Credential -Credential $null 
$ConnectARS = Connect-QADService -service $ArsServer -Proxy-Credential $GetCreds 

#make changes 
$PopulateData = Set-QADUser -Identity $UserID -Credential $GetCreds -ObjectAttributes @{scriptPath=$LogonScr} 

能ANY1請點我做錯了什麼?

任何幫助將高度讚賞...

+0

ANY1,漂亮嗎? – 2014-09-04 13:51:57

+0

我有類似的問題給你。我可以在ARS中用我的管理員帳號來更改內容。但在PowerShell中,我無法做任何事情,就像它被阻塞了.. – DarkLite1 2014-09-04 14:21:39

回答

0

我已經無處可嘗試,但它不應該是:

#Connect to ARS server 
$GetCreds = Get-Credential -Credential $null 
$ConnectARS = Connect-QADService -service $ArsServer -Credential $GetCreds 

#make changes 
$PopulateData = Set-QADUser -Identity $UserID -Connection $ConnectARS -ObjectAttributes @{scriptPath=$LogonScr} 
+0

試過了......不幸的是不起作用。相同的錯誤:( – 2014-09-05 13:56:23

0

好了,想通弄明白了,它太簡單: 這是單純的-proxy開關設置-QADUser聲明 現在工作正常失蹤,THX所有幫助:)