These steps are mandatory before you can use the Admin Account Pooling utility the first time.
Verify that all system requirements for an Migrator for Notes to Exchange admin migration server, and for the Account Pooling Utility in particular, are satisfied. System requirements are documented in the most recent RTM Release Notes that accompany every release. Note that the requirements for migration to Office 365 specify additional requirements for Migrator for Notes to Exchange’s Account Pooling feature.
For example (value shown is the default group name):
For example (value shown is the default sequence number):
• |
In Migrator for Notes to Exchange’s Notes Migration Manager, on the Exchange Server Configuration screen; or |
• |
In the Data Migration Wizard, on the Select Destination Exchange Server screen. |
• |
Use admin account pool (checkbox, available only when migrating to Office 365): Mark this checkbox to tell Migrator for Notes to Exchange to use your Admin Account Pool to migrate data. Next to this checkbox are two buttons that will run the Admin Account Pool Utility by either of two options: |
• |
Manage button: Launches Migrator for Notes to Exchange’s Admin Account Pool utility (see Managing the Admin Account Pool below). |
• |
Reset button: Used to reset the pool, this button launches Migrator for Notes to Exchange’s Admin Account Pool utility, and then automatically deletes all admin accounts from the pool and exits. |
1 |
Swap the Admin Pool accounts to tenant.onmicrosoft.com, and set the TargetAddress to user@[FederatedDomain].com. |
2 |
Make sure to set Set-ExecutionPolicy Unrestricted in the x86 PowerShell. |
Migrator for Notes to Exchange's qsched.exe task-scheduling utility is compatible with Migrator for Notes to Exchange's Admin Account Pool for migrations to Office 365, but only with an additional step added to the process. For other migration scenarios (to an on-premises Exchange, or to Office 365 without the Admin Account Pool) the qsched.exe utility regularly checks Migrator for Notes to Exchange's SQL database to see whether any tasks have been scheduled to run since the last check, and then executes any such tasks it finds (as explained in Migrator for Notes to Exchange's Admin Guide, chapter 13). But Office 365 access restrictions require an intermediate scheduling mechanism to accommodate the Admin Account Pool.
When migrating to Office 365 with Migrator for Notes to Exchange's Admin Account Pool, use Windows' Task Scheduler to run Migrator for Notes to Exchange's qsched.exe for each Migrator for Notes to Exchange task you want to run:
1 |
Add a Windows scheduled task to run Migrator for Notes to Exchange's qsched.exe (in the Migrator for Notes to Exchange installation directory) at the task's scheduled execution time, and to "Run only when user is logged on." |
To start the Admin Account Pool Utility:
• |
Click the Manage button on either of the Migrator for Notes to Exchange screens that offer it: |
• |
Notes Migration Manager Exchange Server Configuration screen. |
• |
Data Migration Wizard Select Destination Exchange Server screen. |
• |
Run the program file (AdminAcctPoolManager.exe) independently. |
Within the Admin Account Pool Utility you can:
• |
Refresh the Current Owner, Allocate Time and Use Count values in the displayed table: Click the Refresh button. These values change as migrations allocate, use and release admin pool accounts, but you can always get the current values by clicking Refresh. |
• |
Re-sync the utility’s list of accounts with Exchange, to view the current list of O365 accounts registered in the Migrator for Notes to Exchange database: Click Synchronize. This is the same synchronization feature the utility performs each time you start the program, as noted above. |
• |
Password: Enter a new Password in the text box. The same Password is assigned to all pooled admin accounts. |
• |
New pool size: Change the number of accounts in the pool by setting a new number in the New pool size field. |
NOTE: If you set the New pool size to 0, or otherwise reduce the size of the pool, any licenses associated with accounts no longer in the pool will become available for other accounts. Microsoft Office 365 licenses are transferable, so they can be reassigned after they are disassociated from these accounts. Note that this dissociation also deletes any O365 mailbox that may have been created for the account, but admin accounts created for this purpose typically do not need or use O365 mailboxes. |
• |
License Admin Pool Accounts: Mark the checkbox if you want Migrator for Notes to Exchange to assign O365 licenses to these accounts, or unmark the checkbox to dissociate O365 licenses from these accounts. |
• |
Close the application: Click Close. |
While any of these operations are in progress, the status bar (bottom of the screen) displays progress information, and the Close button temporarily changes to a Cancel button (to cancel the current process).
To view a list of the available Migrator for Notes to Exchange cmdlets, enter the following command:
In addition to the cmdlet-specific parameters documented below, all of these cmdlets support the common parameters that Microsoft builds into all PowerShell cmdlets, as described in the Microsoft article about_CommonParameters.
Adds a member object to the specifies collection.
Add-MNECollectionMember [-CollectionGuid] <Guid> [-ObjectSmtpAddress] <string> [<CommonParameters>]
Add-MNECollectionMember [-CollectionGuid] <Guid> -ObjectGuid <Guid> [<CommonParameters>]
Validates whether there is an object GUID or SMTP address given in the input.
The Guid of the collection to add the member to.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
The SMTP address of the object to be added to the collection.
Accept wildcard characters: false
The Guid of the object to be added to the collection.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
Accepts pipeline input for the collection guid.
QuestSoftware.NMEAPI.Controllers.NMECollection
Outputs the collection that was added to, if there are no errors.
PS C:\>Add-MNECollectionMember -CollectionGuid 455E1829-45D1-4485-8467-80A463DA5227 -ObjectGuid DA096D83-A07D-44F6-A0D2-35B88A10F6A5
Adds the object with the given Guid to the collection with the given Guid.
PS C:\>Add-MNECollectionMember -CollectionGuid 455E1829-45D1-4485-8467-80A463DA5227 -ObjectSmtpAddress Admin@Sample.test.com
Adds the object with the given Smtp address to the collection with the given Guid.
Adds a design class to the database.
Adds a design class to the database, per specified parameters.
Name of the design class to add.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Whether or not the design class to add has authoritative status.
Accept wildcard characters: false
-DataStoreTypeMask <DataStoreTypeMaskEnum>
Data store type mask of the design class to add.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
Pipeline input for the DesignClassName.
Design class that was added, if there are no errors.
PS C:\>Add-MNEDesignClass -DesignClassName "TestName" -Authoritative $true -DataStoreTypeMask All
Adds a design class with the given parameters to the database.
Adds a specified new group collection.
The name of the group collection to add.
Accept wildcard characters: false
The label to add to the group collection.
Accept wildcard characters: false
The description of the group collection to add.
Accept wildcard characters: false
The query of the group collection to add.
Accept wildcard characters: false
-QueryType <NmeCollectionQueryType>
The query type of the group collection to add.
Accept wildcard characters: false
The collection should be disabled after adding.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Returns the collection that was added, if there are no errors.
Adds the group collection with the given values into the database.
PS C:\>Add-MNEGroupCollection -Name "GroupCollection" -Label "SampleGroup" -Description "This is a test" -QueryType Dynamic -Query "This is a query"
Adds the group collection with the given values into the database and sets the group collection to use dyanmic query to populate members.
Adds specified InetDomain to the database by specific name or an existing object.
Add-MNEInetDomain [-DomainName] <string> [-Disabled] [-IsDefault] [<CommonParameters>]
Add-MNEInetDomain [-AsObject] <InetDomain> [-Disabled] [-IsDefault] [<CommonParameters>]
Adds specified InetDomain to the database by specific name or an existing object.
By default, the domain is marked as active and does not change the default.
Throws errors if domain already exist in database or has incorrect syntax.
The name of the domain. Must have a period and only consist of Letters, Numbers, and Hyphens.
The cmdlet throws an error if domain is already present in database or have incorrect syntax.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Create and add a new domain to database from existing object.
All same rules for domainName, and IsDefault apply.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Sets the Domain to be disabled, not active.
Accept wildcard characters: false
-IsDefault [<SwitchParameter>]
Sets domain to be the default domain. Changes all other domain defaults to be false.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
Add new domain by domain name from pipeline input.
Add new domain by InetDomain object from pipeline input.
Returns the InetDomain object that was added to the database.
PS C:\>Add-MNEInetDomain "test.domain.com"
PS C:\>Add-MNEInetDomain "test.domain.com" -Disabled
PS C:\>Add-MNEInetDomain "test.domain.com" -IsDefault
Adds the domain "test.domain.com" to the database. Enabled is "false". This domain is the default.
PS C:\>Add-MNEInetDomain -AsObject $domain
Add-MNEMailboxAdminPermission [-CollectionName] <string> [<CommonParameters>]
Prior to migrating the Notes mail database to Office Online, you must grant the migration admin user Full Access permission to the mailboxes in the user collection. This cmdlet takes the MNE user collection name and grants the migration admin user Full Access to the mailboxes in the user collection. Use the cmdlet Remove-MNEMailboxAdminPermission to remove the Full Access permission granted to the admin user once the migration is complete.
Accept wildcard characters: false
Name or Guid of the existing configuration to use.
Accept wildcard characters: false
-ConfigurationFilename <string>
File name of a configuration settings .ini file to use as the configuration.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
QuestSoftware.NME.PSModule.Utils.ManageMailboxPermissionResult
PS C:\>Add-MNEMailboxAdminPermission "All Users"
PS C:\>Add-MNEMailboxAdminPermission -CollectionName "All Users"
PS C:\>Add-MNEMailboxAdminPermission "All Users" -ConfigurationId "Default Settings"
Grants the MNE admin user Full Access permission to mailboxes in "All Users" collection using configuration by the given name and returns the results.
Grants MNE admin user Full Access permission to mailboxes in the "All Users" collection using the configuration settings specified in the file C:\defaultconfig.ini.
PS C:\>Add-MNEMailboxAdminPermission "All Users" | ForEach-Object -MemberName "Mailboxes"
Adds a NotesDomain to the database using a domain name and type or NotesDomain object
Add-MNENotesDomain [-DomainName] <string> [[-DomainType] <DomainTypeEnum>] [<CommonParameters>]
Add-MNENotesDomain [-AsObject] <NotesDomain> [<CommonParameters>]
The name of the domain. Follows URI DNS syntax.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
The type of domain. The default type is None if not specified.
The valid type are None, Domain, and GlobalDomain.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Add a NotesDomain from the properties of another NotesDomain object.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The name of the domain. Follows URI DNS syntax.
The type of domain. The valid type are None, Domain, and GlobalDomain.
Add a NotesDomain from the properties of another NotesDomain object.
Returns the NotesDomain object that was added to the database.
PS C:\>Add-MNENotesDomain "test.domain.com"
Adds the domain "test.domain.com" to the database. DomainType defaults to "None".
PS C:\>Add-MNENotesDomain "test.domain.com" GlobalDomain
Adds the domain "test.domain.com" to the database. DomainType is set to "GlobalDomain".
PS C:\>Add-MNENotesDomain -AsObject $domain
Adds the domain name from $domain to the database with the same GUID, DomainName, and DomainType.
The Add-MNENotesNab cmdlet add the Nab (Notes Address Book) that is given by the filepath.
The title is automatically added from the Nab if not specified by the user.
Throws an exception if trying to access Notes Server on non-32 bit PowerShell.
Accept pipeline input: true (ByPropertyName)
Accept wildcard characters: false
The password for the Domino server if needed. Must have ID file already selected for Notes.
Can be left as empty if the NAB is on a local (non-Notes) path.
Accept pipeline input: true (ByPropertyName)
Accept wildcard characters: false
Allows the user to specify a title for the NAB.
If left null, the title will be retrieved from the NAB.
Accept pipeline input: true (ByPropertyName)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet accepts FilePath, NotesPassword, Title from pipeline input.
PS C:\>Add-MNENotesNab -Filepath "C:\Example.nsf" -Title "Test"
Retrieves the NAB located at "C:\Example.nsf" from the local files. Sets the title as "Test".
PS C:\>Add-MNENotesNab -Filepath "!!names.nsf"
Retrieves the NAB located in the local Notes server named names.nsf.
PS C:\>Add-MNENotesNab -Filepath "NotesServer/Example!!names.nsf" -NotesPassword "pa55w0rd"
PS C:\>Import-Csv .\test.csv | Add-MNENotesNab
Retrieves the NAB(s) in the specified .csv file.
Adds a specified new user collection.
The name of the user collection to add.
Accept wildcard characters: false
The label of the user collection to add.
Accept wildcard characters: false
The description of the user collection to add.
Accept wildcard characters: false
The query of the user collection to add.
Accept wildcard characters: false
-QueryType <NmeCollectionQueryType>
The query type of the user collection to add.
Accept wildcard characters: false
The collection should be disabled after adding.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Outputs the collection that was added, if there are no errors.
Adds the user collection with the given values into the database.
Adds a new workstation to the database.
Add-MNEWorkstation -WorkstationName <string> -TcpipAddress <string> [<CommonParameters>]
Adds a new workstation to the SQL database with the given workstation name and TCP/IP address.
Name of the workstation to add.
Accept pipeline input: true (ByPropertyName)
Accept wildcard characters: false
TCPaddress of the workstation to add.
Accept pipeline input: true (ByPropertyName)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
Both the WorkstationName and TCPIPAddress parameters accept pipeline input by property value.
QuestSoftware.NMEAPI.Controllers.Workstation
Returns the workstation that was added to the database.
PS C:\>Add-MNEWorkstation -WorkstationName "MyComputer" -TCPIPAddress "000.000.00.000"
Add the workstation to the database with name "MyComputer" and IP address "000.000.00.000"
Converts a configuration between a Task and Template Config.
Converts a configuration from a task to a template or vise versa, then saves it to the database.
-ConfigurationFromPipeline <NMEConfiguration>
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
-ConvertToTask [<SwitchParameter>]
Convert the Configuration to a Task Config.
Accept wildcard characters: false
-ConvertToTemplate [<SwitchParameter>]
Convert the Configuration to a Template Config.
Accept wildcard characters: false
-TemplateType <TemplateTypeEnum>
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The Configuration parameter accepts pipeline input.
Returns the converted configuration.
PS C:\>$config | Convert-MNEConfiguration -ConvertToTemplate
Converts the config piped in to a Template
This cmdlet copies a specified group collection.
Name of the group collection to copy.
Accept wildcard characters: false
Name of the group collection to copy to.
Accept wildcard characters: false
Label of the group collection to copy to.
If not specified, the label of the copy collection is set to that of the original.
Accept wildcard characters: false
Description of the group collection to copy to.
If not specified, the description of the copy collection is set to that of the original.
Accept wildcard characters: false
Query of the group collection to copy to.
If not specified, the query of the copy collection is set to that of the original.
Accept wildcard characters: false
-QueryType <NmeCollectionQueryType>
Query type of the group collection to copy to.
If not specified, the query type of the copy collection is set to that of the original.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Returns the collection that was copied to, if there are no errors.
Copies the group collection with the given values into the database.
Copies a specified user collection.
Name of the user collection to copy.
Accept wildcard characters: false
Name of the user collection to copy to.
Accept wildcard characters: false
Label of the user collection to copy to.
If not specified, the label of the copy collection is set to that of the original.
Accept wildcard characters: false
Description of the user collection to copy to.
If not specified, the description of the copy collection is set to that of the original.
Accept wildcard characters: false
Query of the user collection to copy to.
If not specified, the query of the copy collection is set to that of the original.
Accept wildcard characters: false
-QueryType <NmeCollectionQueryType>
Query type of the user collection to copy to.
If not specified, the query type of the copy collection is set to that of the original.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Outputs the collection that was copied to, if there are no errors.
Copies the user collection with the given values into the database.
Exports collections of a specific type to a .tsv file.
This cmdlet exports the collections of a specific type to a file specified by the user.
Exports all non-autodefined collections in the database by default.
The file to export the group collection to.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
-CollectionType <CollectionTypeEnum>
The type of collection to export. Valid collection types are None, User, Group or Scheduling.
Accept wildcard characters: false
Include autodefined collections
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Location of the Logfile to create/append to.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The file to export the group collection to.
Include autodefined collections.
Returns the stats of the export.
PS C:\>Export-MNECollections -Path "C:\Path.tsv" -CollectionType Group
Exports the group collections to the file at "C:\Path.tsv".
Export a configuration to a file.
Exports a configuration to the specified file.
Updates the file with the configuration represented by the configuration Guid.
Guid of the configuration to export to the file.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
File to export the configuration to.
Accept wildcard characters: false
Overwrite an existing file without prompting the user for confirmation.
Accept wildcard characters: false
-RawConfiguration [<SwitchParameter>]
Export configuration settings from database without merging with default settings.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
Configuration Guid accepts input from the pipeline.
This cmdlet returns the directory path of the exported file upon a successful run.
Exports the configuration from the specified Guid to the file of the given file path.
PS C:\>Export-MNEConfiguration -ConfigurationGuid 69F764C9-D209-4C4D-BCCB-6E59F615CD9D
Export configuration data to a file.
Exports configuration data to the specified file.
Updates the file with the configuration data.
-ConfigurationData <ConfigurationData>
Configuration data to export to the file.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
File to export the configuration data to.
Accept wildcard characters: false
Overwrite an existing file without prompting the user for confirmation.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The ConfigurationData parameter accepts input from the pipeline.
This cmdlet returns the directory path of the exported file upon a successful run.
PS C:\>Export-MNEConfigurationData -ConfigurationData $data -FileName "TestName"
PS C:\>Export-MNEConfigurationData -ConfigurationData $data -FileName "c:\temp.ini"
Exports the configuration data object to the file specified in the directory path.
PS C:\>Export-MNEConfigurationData -ConfigurationData $data
Exports data from the specified summary to the designated tsv (tab-delimited file).
Export-MNESummary [-FilePath] <string> [-Summary] <ViewSummary> [<CommonParameters>]
Exports data from the specified summary to the designated tsv (tab-delimited file).
The path specified will automatically overwrite any existing file.
The Summary is chosen by a ViewSummary enum value
The designated export location and filename for the summary.
The cmdlet will confirm if the file is the correct extension and overwrite any existing file.
Accept wildcard characters: false
The chosen summary to be exported.
Uses a ViewSummary enum for ease of use.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
This cmdlet returns no values on a successful run.
PS C:\>Export-MNESummary -Filepath "C:\summary.tsv" -Summary UserAndResources
Exports the user and resurces summary to a tsv file called "summary" in the root of the c drive.
Removes certain lines in the NME Database Export that are expected to change.
Format-MNEDatabaseExport -InputFile <string> [-IgnoreFile <string>] [<CommonParameters>]
Accept wildcard characters: false
Path to a file containing all the lines of text to ignore in it.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
PS C:\>Format-MNEDatabaseExport -InputFile C:\exampleexport.txt
PS C:\>Format-MNEDatabaseExport -InputFile C:\exampleexport.txt -IgnoreFile C:\ignore.txt
Formats the indicated group collection with the values of the other parameters.
Name of the group collection to format.
Accept wildcard characters: false
Name to change the group collection name to.
If not specified, the name of the collection will remain the same.
Accept wildcard characters: false
Label to change the group collection label to.
If not specified, the label of the collection will remain the same.
Accept wildcard characters: false
Description to change the group collection description to.
If not specified, the description of the collection will remain the same.
Accept wildcard characters: false
Query to change the group collection query to.
If not specified, the query of the collection will remain the same.
Accept wildcard characters: false
Query type to change the group collection query to.
If not specified, the query type of the collection will remain the same.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Outputs the collection that was updated to, if there are no errors.
Updates the group collection with the given values into the database.
This cmdlet formats the indicated user collection with the values of the other parameters.
Name of the user collection to format.
Accept wildcard characters: false
Name to change the user collection name to.
If not specified, the name of the collection will remain the same.
Accept wildcard characters: false
Label to change the user collection label to.
If not specified, the label of the collection will remain the same.
Accept wildcard characters: false
Description to change the user collection description to.
If not specified, the description of the collection will remain the same.
Accept wildcard characters: false
Query to change the user collection query to.
If not specified, the query of the collection will remain the same.
Accept wildcard characters: false
-QueryType <NmeCollectionQueryType>
Query type to change the user collection query to.
If not specified, the query type of the collection will remain the same.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Outputs the collection that was updated to, if there are no errors.
Updates the user collection with the given values into the database.
Get-MNEAutodiscoverUserSettings
Returns the user settings obtained from the Plain Old XML (POX) Autodiscover service.
Returns the user settings obtained from the Plain Old XML (POX) Autodiscover service.
Specifies the user SMTP address used to perform autodiscover.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Specifies the Autodiscover Url endpoint.
Accept wildcard characters: false
Specifies the credentials that are used to authenticate with the Autodiscover service.
Accept wildcard characters: false
-WebProxyCredential <PSCredential>
Specifies the HTTP proxy credential settings.
Accept wildcard characters: false
-AllowSelfSignedCertificates [<SwitchParameter>]
Accept wildcard characters: false
-EnableScpLookup [<SwitchParameter>]
Accept wildcard characters: false
-DisableMapiHttp [<SwitchParameter>]
Determines whether or not MNE requests MAPI/HTTP protocol information from the Autodiscover service.
Accept wildcard characters: false
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The UserSmtpAddress parameter accepts values from the pipeline.
QuestSoftware.EwsMe.IPoxUserSettings
Returns user settings from the Plain old XML (POX) Autodiscover service response.
PS C:\>Get-MNEAutodiscoverUserSettings -UserSmtpAddress test@domain.com
Returns user settings by supplying user credential obtained from Get-Credential cmdlet.
Gets all of the collections or the indicated collection from the database.
Get-MNECollection [-CollectionType <NmeCollectionType>] [<CommonParameters>]
Get-MNECollection [-CollectionGuid] <Guid> [<CommonParameters>]
-CollectionType <NmeCollectionType>
The collection type to search for. The default type is User.
Valid collection type must be either User or Group.
Accept wildcard characters: false
Guid of the collection to get from the database.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The CollectionGuid parameter accepts input from the pipeline.
PS C:\>Get-MNECollection -CollectionGuid 455E1829-45D1-4485-8467-80A463DA5227
Returns the user or group collection associated with the given Guid.
Returns all user collections in the database.
PS C:\>Get-MNECollection -CollectionType Group
Returns all group collections in the database.
Returns all members in a collection.
Get-MNECollectionMember [-CollectionGuid] <Guid> [<CommonParameters>]
Returns all members in a collection that is specified by the Guid given by the user.
Guid of collection to retrieve the collection members from.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The CollectionGuid parameter accepts values from the pipeline.
Returns all members of the given collection.
PS C:\>Get-MNECollectionMember -CollectionGuid 69F764C9-D209-4C4D-BCCB-6E59F615CD9D
Returns all members in the collection with the specified Guid.
Returns either a single or multiple configurations.
Returns either a single or multiple configurations based on the user input.
Can be used to retrieve the configuration of the specified Guid.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Can be used to retrieve the configuration of the specified name.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
-ConfigurationType <ConfigurationTypeEnum>
Can be used to retrieve the configuration of the specified name and the specified type based on the
Can be used to retrieve all configurations of the specified type based on the ConfigurationTypeEnum.
Accept wildcard characters: false
-RawConfiguration [<SwitchParameter>]
Get raw configuration settings without merging with default settings.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The Name of the configuration to retrieve.
The Guid of the configuration to retrieve.
Returns either a single or multiple configurations based on the user given input.
PS C:\>Get-MNEConfiguration -ConfigurationGuid 69F764C9-D209-4C4D-BCCB-6E59F615CD9D
Returns the configuration with the specified Guid.
PS C:\>Get-MNEConfiguration -Name "Migration Configuration"
Returns the configuration with the specified name.
PS C:\>Get-MNEConfiguration -Name "Migration Configuration" -ConfigurationType MigrateWithAdmin
Returns the configuration with the specified name and configuration type.
PS C:\>Get-MNEConfiguration -ConfigurationType DiscoverNabs
Returns all configurations with the specified configuration type.
Returns all configurations in the database.
Get-MNEDatabaseConnectionString
Gets the database connection string for the SQL database.
Get-MNEDatabaseConnectionString [<CommonParameters>]
Builds the connection string using SqlConnectionStringBuilder.
Then writes the connection after getting the connection string from the NME database connection.
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet does not have any parameters that accept pipeline input.
System.Data.SqlClient.SqlConnectionStringBuilder
Returns the database connection string object.
PS C:\>Get-MNEDatabaseConnectionString
Retrieves the connection to the SQL database for Notes Migrator for Exchange.
Accesses the NME Database and exports it.
Quest recommendeds you pipe the output to Out-File.
Get-MNEDatabaseExport [<CommonParameters>]
Accesses the NME Database and exports it to console output.
Quest recommendeds you pipe the output to Out-File.
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Outputs the full NME database. Quest recommendeds you to output this to a file.
Exports the NME Database directly to the console.
PS C:\>Get-MNEDatabaseExport | Out-File C:\exampleexport.txt -Width 9001
Get-MNEDatabaseVersion [<CommonParameters>]
This cmdlet returns the database version.
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Returns the current database version.
Returns the current database version.
Get-MNEGlobalDefaultSettings [<CommonParameters>]
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
Gets the currently installed license information from MNE.
Get-MNELicense [<CommonParameters>]
Gets the currently installed license information from MNE.
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Get-MNEMigrationResult [-SmtpAddress] <string> [<CommonParameters>]
Get-MNEMigrationResult -ObjectGuid <Guid> [<CommonParameters>]
Get-MNEMigrationResult -CollectionGuid <Guid> [<CommonParameters>]
The SMTP address of the object to check the migration results for.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
The Guid of the object to check the migration results for.
Accept wildcard characters: false
The Guid of the collection to check the migration results for.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The cmdlet parameter SmtpAddress accepts input from the pipeline.
MigrationUserResult, MigrationResourceResult
Returns all relevant data from the migration for the specified objects.
PS C:\>Get-MNEMigrationResult -SmtpAddress sample@test.nme.com
Returns the migration information for the user(s) or resource(s) with the given smtp address.
PS C:\>Get-MNEMigrationResult -ObjectGuid 555B8BB5-7AE0-4CBF-A7FF-9B11163CD9B1
Returns the migration information for the object with the given Guid.
PS C:\>Get-MNEMigrationResult -CollectionGuid 54899105-83EC-4009-B763-E54CA8C8B302
Returns the migration information for the collection members in the collection with the given Guid.
Gets either a single migration task (by task Guid) or multiple tasks (by Configuration type enum).
Get-MNEMigrationTask -TaskGuid <Guid> [<CommonParameters>]
Get-MNEMigrationTask -ConfigurationType <ConfigurationTypeEnum> [<CommonParameters>]
Gets either a single migration task (by task Guid) or multiple tasks (by Configuration type enum).
Guid of the migration task to retrieve.
Accept wildcard characters: false
-ConfigurationType <ConfigurationTypeEnum>
Configuration type of the migration task(s) to retrieve.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept input from pipeline.
Returns the task(s) based on the given input.
PS C:\>Get-MNEMigrationTask -TaskGuid 555B8BB5-7AE0-4CBF-A7FF-9B11163CD9B1
Returns the migration task with the given Guid.
PS C:\>Get-MNEMigrationTask -ConfigurationType Default
Returns the migration task(s) with the given configuration type.
Gets the migration time window.
Get-MNEMigrationTimeWindow [[-CollectionName] <string>] [<CommonParameters>]
Gets the migration time window.
Name of the collection to retrieve the schedule for if specfied.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept input from pipeline.
Returns the schedule for a given collection if the collection name is specified.
PS C:\>Get-MNEMigrationTimeWindow -CollectionName "Test"
Returns the migration time information for the collection named "Test".
PS C:\>Get-MNEMigrationTimeWindow
Returns the migration time information for all scheduled collections.
Get-MNEResource [-SmtpEmailAddress] <string> [<CommonParameters>]
Get-MNEResource -ObjectGuid <Guid> [<CommonParameters>]
SMTP address of the resource to retrieve.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Guid of the object associated with the resource to retrieve.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
SMTP address of the resource to retrieve.
Guid of the object associated with the resource to retrieve.
Returns the specified resource information (either by SMTP address or object Guid).
PS C:\>Get-MNEResource -SmtpEmailAddress sample@test.nme.com
Returns the resource associated with the given smtp address.
PS C:\>Get-MNEResource -ObjectGuid 335B8BB5-7AE0-4CBF-A7FF-9B11122CD9B1
Returns the resource associated with the given object Guid.
Gets the list of scheduling configuration files and returns them.
Get-MNESchedulingConfigFile [<CommonParameters>]
Gets the list of scheduling configuration files and returns them.
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Returns the names of the scheduling config files.
PS C:\>Get-MNESchedulingConfigFile
Gets and returns the names of the configuration files for the SSDM Scheduling Administration tool.
Gets and returns the list of global scheduling settings for the SSDM Scheduling Administration tool.
Get-MNESchedulingSetting [<CommonParameters>]
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Return the global settings for scheduling in SSDM Scheduling Administration tool.
PS C:\>Get-MNESchedulingSetting
Gets and returns the list of global scheduling settings for the SSDM Scheduling Administration tool.
Gets the Task Errors for a specified given task or run.
Get-MNETaskError [-TaskRunGuid] <Guid> [<CommonParameters>]
Get-MNETaskError -TaskGuid <Guid> [<CommonParameters>]
This cmdlet outputs the errors for a specified task and/or task run.
Guid of the task run to retrieve the errors from if retrieving by task run.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Guid of the task to retrieve the errors from if retrieving by task.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
Guid of the task run to retrieve the errors from.
Returns the errors for the task and/or task run as strings.
PS C:\>Get-MNETaskError -TaskGuid 555B8BB5-7AE0-4CBF-A7FF-9B11163CD9B1
Returns the task error information for the specified task.
PS C:\>Get-MNETaskError -TaskRunGuid 335B8BB5-7AE0-4CBF-A7FF-9B11122CD9B1
Returns the task error information for the specified task(s) from the run.
Get-MNETaskRun [-TaskRunGuid] <Guid> [<CommonParameters>]
Get-MNETaskRun -TaskName <string> [<CommonParameters>]
Get-MNETaskRun -TaskGuid <Guid> [<CommonParameters>]
Get-MNETaskRun -ConfigurationType <ConfigurationTypeEnum> [<CommonParameters>]
This cmdlet retrieves information for a specified task run.
Guid of a task run, if looking for a task run by its own Guid.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Task Name, if finding all task runs associated with a particular task.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Guid of the task, if finding the task runs associated with that task.
Accept wildcard characters: false
-ConfigurationType <ConfigurationTypeEnum>
Configuration Type, if finding all task runs associated with a particular configuration.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
Guid of a task run, if looking for a task run by its own Guid.
Task Name, if finding all task runs associated with a particular task.
Outputs information on the specified task run.
PS C:\>Get-MNETaskRun -TaskGuid 555B8BB5-7AE0-4CBF-A7FF-9B11163CD9B1
Returns the task run associated with the task with the given Guid.
PS C:\>Get-MNETaskRun -TaskRunGuid 335B8BB5-7AE0-4CBF-A7FF-9B11122CD9B1
Returns the task run associated given task run Guid.
Gets the specified task schedule.
Get-MNETaskSchedule [-TaskGuid <Guid>] [<CommonParameters>]
Retrieves information for a specific task schedule.
If no Guid is specified, this cmdlet returns all scheduled tasks.
Using verbose will output the name and Guid prior to the schedule.
Guid of the task specified to get the schedule for.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Returns the schedule of the specified task, or the schedules of all scheduled tasks.
PS C:\>Get-MNETaskSchedule -TaskGuid 555B8BB5-7AE0-4CBF-A7FF-9B11163CD9B1
Returns the task schedule associated with specified task Guid.
Returns all schedules of scheduled tasks.
Get-MNEUser [[-SmtpEmailAddress] <string>] [<CommonParameters>]
Get-MNEUser -ObjectGuid <Guid> [<CommonParameters>]
This cmdlet returns the specified user based on the defined smtp address or object Guid.
SMTP address of the user to retrieve.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Guid of the object associated with the user to retrieve.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
SMTP address of the user to retrieve.
Guid of the object associated with the user to retrieve.
Outputs the specified user information (either by SMTP address or object Guid).
PS C:\>Get-MNEUser -SmtpEmailAddress sample@test.nme.com
Returns the user associated with the given smtp address.
PS C:\>Get-MNEUser -ObjectGuid 335B8BB5-7AE0-4CBF-A7FF-9B11122CD9B1
Returns the user associated with the given object Guid.
Gets the workstation specified or all workstations.
Get-MNEWorkstation [-WorkstationGuid <Guid>] [<CommonParameters>]
Guid of the workstation to retrieve.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
WorkstationGuid parameter accepts pipeline input.
Outputs the workstation specified by user, or all workstations if no Guid is given.
PS C:\>Get-MNEWorkstation -WorkstationGuid 69F764C9-D209-4C4D-BCCB-6E59F615CD9D
Returns the workstation with the specified Guid.
Returns all workstations in the database.
Sets a Collection to be "invisible" in the UI.
Hide-MNECollection [-Collection] <NmeCollection> [<CommonParameters>]
The collection object to be hidden.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The Collection parameter accepts object input from the pipeline.
Get-MNECollection -CollectionGuid "e50d5123-2ec8-4096-816e-8e0e458d12e7" | Hide-MNECollection
A collection is retrieved from the database and its visiblity is set to hidden.
Import collections of any kind from a specified file.
Import-MNECollections [-Path] <string> [-LogFile <string>] [<CommonParameters>]
Import collections of any kind from a specified file.
Path to the file from which the collections will be imported.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
Path to which the log will be written.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet accepts file path input from the pipeline.
Import statistics information.
PS C:\>Import-MNECollections -Path "C:\Collections.tsv"
Imports the collections from the file at "C:\Collections.tsv".
Import a configuration from file.
Imports configurations from the given file.
Updates the configuration represented from the configuration Guid with the settings from the file.
Guid of the configuration to which the settings from the file will be imported.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
The name of the file that has the configuration settings to import.
Accept wildcard characters: false
-RawConfiguration [<SwitchParameter>]
Import configuration settings from file without comparing with default settings.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
The ConfigurationGuid parameter accepts input from the pipeline.
This cmdlet returns no values upon a successful run.
Import configuration data from file.
Import-MNEConfigurationData [-FileName] <string> [<CommonParameters>]
Imports configuration data from the given file.
Name of the file to import the configuration data from.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Returns the configuration data from the file.
PS C:\>Import-MNEConfigurationData -FileName "TestName"
Imports the configuration data from the file named "TestName".
Installs a license file for MNE using the given file path.
Install-MNELicense [-Path] <string> [<CommonParameters>]
Installs a license file for MNE using the given file path.
File path for the license to install.
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Exports the Directory Exporter objects in MNE to a tsv file.
Invoke-MNEExportObjectsToTsv [-TsvFilePath] <string> [<CommonParameters>]
Exports the directory exporter objects in NME to a tsv file.
The UNC path of the tsv file to export to.
Accept pipeline input: true (ByValue)
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet accepts file path input from the pipeline.
Nothing is returned from this cmdlet.
PS C:\>Invoke-MNEExportObjectsToTsv -TsvFilePath "C:\exampletsv.tsv"
Exports all objects to the tsv specified if it exists, otherwise creates a new tsv file.
Runs the get notes domains executable with the configuration in the database or user defined values.
Accept wildcard characters: false
Accept wildcard characters: false
Accept wildcard characters: false
The WorkStation to run this task on.
Accept wildcard characters: false
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.
Returns a TaskRunInfo object that contains information regarding the invoked task.
PS C:\>Invoke-MNEFindNotesDomain
Runs the NME Enumerate Notes Domain task and returns the process results.
PS C:\>Invoke-MNEFindNotesDomain -DominoServer "Domino/Server"
PS C:\>Invoke-MNEFindNotesDomain -UserIdFile "C:\Admin-id.id"
PS C:\>Invoke-MNEFindNotesDomain -Password "password"
Accept wildcard characters: false
Accept wildcard characters: false
Accept wildcard characters: false
The WorkStation this task should be ran on.
Accept wildcard characters: false
Accept wildcard characters: false
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
This cmdlet has no parameters that accept pipeline input.