-
Users Handbook
-
-
-
- Intro & Basics
- All Objects have Descriptions
- Check for unused procedures
- Compiled Procedures up to date
- Invalid Source Layers
- Required Columns
- Check for abnormally ended Jobs
- Check for blocked Jobs
- Check for disabled Tasks
- Check for duplicate tasks in different Jobs
- Check for duplicate tasks in same Job
-
-
-
Administrators Handbook
-
- Register URL
- Configure SSL/HTTPS
- Configure Proxy-Server
- How to edit the appsettings.json file
- System Settings
- Global Parameters
- Allow Service Account to Logon as a Service
- LDAP & SSO Authentication
- Migrating Testcases and Configuration
- Licenses Management
- Manual Configuration
- Exposing the BiG EVAL REST API to other Network Segments
-
- Articles coming soon
-
Developers Handbook
-
Known Problems
-
Demo Virtual Machine
-
Release Notes
-
General
Set-BeInstanceParameter
Last Updated On
- Home
- Developers Handbook
- PowerShell
- PowerShell Module
- Cmdlets
- Set-BeInstanceParameter
Sets the value of a specific instance parameter (global parameter).
Set-BeInstanceParameter -Connection <Connection> -ParameterName <String> -ParameterValue <Int16|Int32|Int64|Double|Single|Decimal|Float|Boolean|String>
Description
The Set-BeInstanceParameter
cmdlet sets an instance parameter (also called “global parameter”) to a specific value.
If an instance parameter with the name specified doesn’t exist, it gets created.
As the ParameterValue you can pass a variety of different data types.
Example
The following example shows how to set some instance parameters to values of different data types.
Set-BeInstanceParameter -Connection $connection -ParameterName "MyParameter1" -ParameterValue "value1" Set-BeInstanceParameter -Connection $connection -ParameterName "MyParameter2" -ParameterValue 123
Parameters
-Connection
Pass the connection-object returned by the Connect-BeInstance cmdlet.
Type: | Connection |
Mandatory: | Yes |
Position: | Named |
Default Value: | None |
-ParameterName
The name of the instance parameter whose value should be set.
Type: | String |
Mandatory: | Yes |
Position: | Named |
Default Value: | None |
-ParameterValue
The value that should be set to the instance parameter.
Type: | Int16|Int32|Int64|Double|Single|Decimal|Float|Boolean|String |
Mandatory: | Yes |
Position: | Named |
Default Value: | None |
Table of Contents