I'm writing a powershell script to move mailboxes from one forest to another. I am able to perform the operation with the move-mailbox commandlet but the command requests confirmation before each mailbox. (Yes, All, None etc...) I want to skip this to completely automate the batch. The Confirm parameter appears to be the ticket but I can't find any documentation on what the input values for this parameter is. What would be the values to enter to skip any confirmation inputs? -- Computer Shogun Mastery over Systems and Training
Use -Confirm:$False Kelly jaxdagger wrote: > I'm writing a powershell script to move mailboxes from one forest to another. > > I am able to perform the operation with the move-mailbox commandlet but the > command requests confirmation before each mailbox. (Yes, All, None etc...) I > want to skip this to completely automate the batch. > > The Confirm parameter appears to be the ticket but I can't find any > documentation on what the input values for this parameter is. What would be > the values to enter to skip any confirmation inputs? >