7

以下は、実行したいスクリプトです。ここでの問題は、例外が発生すると実行が停止することですcontinue。catch ブロックで使用しましたが、機能しませんでした。ループインする必要がある例外が発生した後でも、どうすれば動作しますかforeach

ループも使用しましたwhile($true)が、無限ループになりました。それについてどうやって行くのですか?

$ErrorActionPreference = "Stop";
try 
{
# Loop through each of the users in the site
foreach($user in $users)
{
    # Create an array that will be used to split the user name from the domain/membership provider
    $a=@()


    $displayname = $user.DisplayName
    $userlogin = $user.UserLogin


    # Separate the user name from the domain/membership provider
    if($userlogin.Contains('\'))
    {
        $a = $userlogin.split("\")
        $username = $a[1]
    }
    elseif($userlogin.Contains(':'))
    {
        $a = $userlogin.split(":")
        $username = $a[1]
    }

    # Create the new username based on the given input
    $newalias = $newprovider + "\" + $username

    if (-not $convert)
    {
        $answer = Read-Host "Your first user will be changed from $userlogin to $newalias. Would you like to continue processing all users? [Y]es, [N]o"

        switch ($answer)
        {
            "Y" {$convert = $true}
            "y" {$convert = $true}
            default {exit}
        }
    }   

    if(($userlogin -like "$oldprovider*") -and $convert)
    {  

        LogWrite ("Migrating User old : " + $user + " New user : " + $newalias + "    ")
        move-spuser -identity $user -newalias $newalias -ignoresid -Confirm:$false
        LogWrite ("Done")
    }   
} 
}
catch  {
    LogWrite ("Caught the exception")
    LogWrite ($Error[0].Exception)
} 
4

4 に答える 4

10

try {...} catch {...}エラーを処理したい場合に使用します。それらを無視する場合は、@CB が提案したように$ErrorActionPreference = "Continue"(または) を設定するか、エラーが発生する特定の操作に使用する必要があります。特定の命令からのエラーを処理したい場合は、その命令をループ全体ではなくブロックに入れます。たとえば、次のようになります。"SilentlyContinue"-ErrorAction "SilentlyContinue"try {...} catch {...}

foreach($user in $users) {
  ...
  try {
    if(($userlogin -like "$oldprovider*") -and $convert) {  
      LogWrite ("Migrating User old : " + $user + " New user : " + $newalias + "    ")
      move-spuser -identity $user -newalias $newalias -ignoresid -Confirm:$false
      LogWrite ("Done")
    }   
  } catch {
    LogWrite ("Caught the exception")
    LogWrite ($Error[0].Exception)
  }
} 
于 2013-04-26T07:51:07.763 に答える
0

以下のようにコードを修正しました。後に次のコードを使用しましたmove-spuser -identity $user -newalias $newalias -ignoresid -Confirm:$false

if($?)
{
  LogWrite ("Done!")
  LogWrite ("  ")
}
else
{
  LogWrite ($Error[0].ToString())
  LogWrite ("  ")
}
于 2013-04-26T07:55:30.600 に答える
0

私にとってうまくいったことは、$ErrorActionPreference変数を停止するように設定してから、リセットして catch ブロックで続行することです。

$e = $ErrorActionPreference
$ErrorActionPreference="stop"

try
{
     #Do Something that throws the exception
}
catch
{
    $ErrorActionPreference=$e

}

$ErrorActionPreference=$e;
于 2014-11-24T20:10:41.193 に答える