web-dev-qa-db-ja.com

例外で実行を続行する

以下は私が実行したいスクリプトです。ここでの問題は、例外が発生すると実行が停止することです。catchブロックでcontinueを使用しましたが、機能しませんでした。例外が発生した後でも動作させるにはどうすればよいですか?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)
} 
5
Ishan

エラーを処理する場合は、try {...} catch {...}を使用します。それらを無視したい場合は、$ErrorActionPreference = "Continue"(または"SilentlyContinue")を@ C.Bとして設定する必要があります。提案するか、エラーを発生させる特定の操作に-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)
  }
} 
7
Ansgar Wiechers

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

$e = $ErrorActionPreference
$ErrorActionPreference="stop"

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

}

$ErrorActionPreference=$e;
0

「キャッチ」をループ本体の外側に配置したようです。これにより、ループが中止されます。キャッチをループの中に入れます

0
user3393807

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

if($?)
{
  LogWrite ("Done!")
  LogWrite ("  ")
}
else
{
  LogWrite ($Error[0].ToString())
  LogWrite ("  ")
}
0
Ishan