Skip to content

[AutoPublish] main to live - 07/31 07:35 PDT | 07/31 20:05 IST #12935

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jul 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
726 changes: 363 additions & 363 deletions .openpublishing.redirection.skype.json

Large diffs are not rendered by default.

3,002 changes: 3,001 additions & 1 deletion .openpublishing.redirection.teams.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ ms.reviewer:
# Get-OfficeWebAppsExcelBIServer

## SYNOPSIS
Returns the server ID of the instance of Analysis Services that has been configured as a data model server in Office Online Server.

Returns the server ID of the instance of Analysis Services that has been configured as a data model
server in Office Online Server.

## SYNTAX

Expand All @@ -21,12 +23,15 @@ Get-OfficeWebAppsExcelBIServer
```

## DESCRIPTION
Returns the server ID of the instance of Analysis Services that has been configured as a data model server in Office Online Server.

Returns the server ID of the instance of Analysis Services that has been configured as a data model
server in Office Online Server.

## EXAMPLES

### Example 1
```

```powershell
Get-OfficeWebAppsExcelBIServer
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ms.reviewer:
# Get-OfficeWebAppsExcelUserDefinedFunction

## SYNOPSIS

Returns a list of currently configured UDF definitions.

## SYNTAX
Expand All @@ -21,24 +22,27 @@ Get-OfficeWebAppsExcelUserDefinedFunction [[-Identity] <UserDefinedFunction>]
```

## DESCRIPTION

Returns a list of currently configured UDF definitions.

## EXAMPLES

### This example returns a list of currently configured UDF definitions from c:\myudf.dll.
```

```powershell
Get-OfficeWebAppsExcelUserDefinedFunction -Identity c:\myudf.dll
```

## PARAMETERS

### -Identity

The path and filename of the UDF.

```yaml
Type: UserDefinedFunction
Parameter Sets: (All)
Aliases:
Aliases:

Required: False
Position: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ms.reviewer:
# Get-OfficeWebAppsFarm

## SYNOPSIS

Returns details about the OfficeWebAppsFarm object that the current server is a member of.

## SYNTAX
Expand All @@ -21,21 +22,25 @@ Get-OfficeWebAppsFarm
```

## DESCRIPTION
The Get-OfficeWebAppsFarm cmdlet returns details about the OfficeWebAppsFarm object that the current server is a member of.
This object represents a group of servers that work as a unit to provide web-based editing and viewing of Office documents.
No parameters are used with the Get-OfficeWebAppsFarm cmdlet.

The `Get-OfficeWebAppsFarm` cmdlet returns details about the OfficeWebAppsFarm object that the
current server is a member of. This object represents a group of servers that work as a unit to
provide web-based editing and viewing of Office documents. No parameters are used with the
`Get-OfficeWebAppsFarm` cmdlet.

## EXAMPLES

### EXAMPLE 1
```

```powershell
Get-OfficeWebAppsFarm
```

This example returns details about the OfficeWebAppsFarm object.

### EXAMPLE 2
```

```powershell
(Get-OfficeWebAppsFarm).Machines
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ms.reviewer:
# Get-OfficeWebAppsHost

## SYNOPSIS

Returns the list of host domains that are on the Allow List for an Office Online Server farm.

## SYNTAX
Expand All @@ -21,34 +22,41 @@ Get-OfficeWebAppsHost
```

## DESCRIPTION
The Get-OfficeWebAppsHost cmdlet returns the list of host domains to which Office Online Server allows file operations requests, such as file retrieval, metadata retrieval, and file changes.
This list, known as the Allow List, is a security feature that prevents unwanted hosts from connecting to an Office Online Server farm and using it for file operations without your knowledge.

The wildcard * is assumed for any domain that appears on the Allow List so that requests to all subdomains are also allowed.
For example, if the domain contoso.com is on the Allow List, then Office Online Server also allows requests to the domains corp.contoso.com and dev.contoso.com.
The Get-OfficeWebAppsHost cmdlet returns the list of host domains to which Office Online Server
allows file operations requests, such as file retrieval, metadata retrieval, and file changes. This
list, known as the Allow List, is a security feature that prevents unwanted hosts from connecting to
an Office Online Server farm and using it for file operations without your knowledge.

The wildcard * is assumed for any domain that appears on the Allow List so that requests to all
subdomains are also allowed. For example, if the domain contoso.com is on the Allow List, then
Office Online Server also allows requests to the domains corp.contoso.com and dev.contoso.com.
Requests to other domains (such as fabrikam.com) are not allowed.

If there are no domains on the Allow List, Office Online Server allows file requests to hosts in any domain.
Do not leave this list blank if your Office Online Server farm is accessible from the Internet.
Otherwise anyone can use your Office Online Server farm to view and edit content.
If there are no domains on the Allow List, Office Online Server allows file requests to hosts in any
domain. Do not leave this list blank if your Office Online Server farm is accessible from the
Internet. Otherwise anyone can use your Office Online Server farm to view and edit content.

## EXAMPLES

### EXAMPLE 1
```

```powershell
Get-OfficeWebAppsHost
```

This example returns the host domains that are on the Allow List.

### EXAMPLE 2

If there are multiple domains in the Allow List, please run the following:

```
```powershell
Get-OfficeWebAppsHost | Select allowList -ExpandProperty allowList
```

This example returns the host domains that are on the Allow List without ellipsis truncation in the case of multiple domains.
This example returns the host domains that are on the Allow List without ellipsis truncation in the
case of multiple domains.

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ms.reviewer:
# Get-OfficeWebAppsMachine

## SYNOPSIS

Returns details about the current server that is in an Office Online Server farm.

## SYNTAX
Expand All @@ -21,20 +22,24 @@ Get-OfficeWebAppsMachine
```

## DESCRIPTION
The Get-OfficeWebAppsMachine cmdlet returns details about the current server that is in an Office Online Server farm.
These details include the roles and health status of the current server and the name of the master server for the farm.

The Get-OfficeWebAppsMachine cmdlet returns details about the current server that is in an Office
Online Server farm. These details include the roles and health status of the current server and the
name of the master server for the farm.

## EXAMPLES

### EXAMPLE 1
```

```powershell
Get-OfficeWebAppsMachine
```

This example returns details about the current server that is in an Office Online Server farm.

### EXAMPLE 2
```

```powershell
(Get-OfficeWebAppsFarm).Machines
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ms.reviewer:
# New-OfficeWebAppsExcelBIServer

## SYNOPSIS

Configures Analysis Services servers to work with Excel Online.

## SYNTAX
Expand All @@ -21,24 +22,29 @@ New-OfficeWebAppsExcelBIServer -ServerId <String>
```

## DESCRIPTION

Configures Analysis Services servers to work with Excel Online.

## EXAMPLES

### This example configures the Analysis Services server named SSAS01 to work with Excel Online.
```
### Example 1

This example configures the Analysis Services server named SSAS01 to work with Excel Online.

```powershell
New-OfficeWebAppsExcelBIServer -ServerID "SSAS01"
```

## PARAMETERS

### -ServerId

The name of the Analysis Services server.

```yaml
Type: String
Parameter Sets: (All)
Aliases:
Aliases:

Required: True
Position: Named
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ms.reviewer:
# New-OfficeWebAppsExcelUserDefinedFunction

## SYNOPSIS

Creates a definition for a UDF binary.

## SYNTAX
Expand All @@ -22,23 +23,33 @@ New-OfficeWebAppsExcelUserDefinedFunction -Assembly <String> [-AssemblyLocation
```

## DESCRIPTION

Creates a definition for a UDF binary.

## EXAMPLES

### EXAMPLE 1
```

```powershell
New-OfficeWebAppsExcelUserDefinedFunction -Assembly c:\myudf.dll -AssemblyLocation LocalFile -Enable:$true -Description "My Server UDFs"
```

### EXAMPLE 2
```
New-OfficeWebAppsExcelUserDefinedFunction -Assembly "CompanyName.Hierarchical.MyUdfNamespace.MyUdfClassName.dll, Version=1.1.0.0, Culture=en, PublicKeyToken=e8123117d7ba9ae38" -AssemblyLocation GAC -Enable:$true -Description "My GAC Server UDFs"

```powershell
$newOfficeWebAppsExcelUserDefinedFunctionSplat = @{
Assembly = 'CompanyName.Hierarchical.MyUdfNamespace.MyUdfClassName.dll, Version=1.1.0.0, Culture=en, PublicKeyToken=e8123117d7ba9ae38'
AssemblyLocation = 'GAC'
Enable = $true
Description = "My GAC Server UDFs"
}
New-OfficeWebAppsExcelUserDefinedFunction @newOfficeWebAppsExcelUserDefinedFunctionSplat
```

## PARAMETERS

### -Assembly

The name of the assembly.

```yaml
Expand All @@ -54,8 +65,13 @@ Accept wildcard characters: False
```

### -AssemblyLocation

The location of the assembly.
Values: LocalFile - a local directory; GAC - the Global Assembly Cache.

Values:

- LocalFile - a local directory
- GAC - the Global Assembly Cache

```yaml
Type: AssemblyLocation
Expand All @@ -70,8 +86,8 @@ Accept wildcard characters: False
```

### -Confirm

Prompts you for confirmation before executing the command.
For more information, type the following command: get-help about_commonparameters

```yaml
Type: SwitchParameter
Expand All @@ -86,6 +102,7 @@ Accept wildcard characters: False
```

### -Description

Description of the UDF.

```yaml
Expand All @@ -101,6 +118,7 @@ Accept wildcard characters: False
```

### -Enable

Enables the UDF.

```yaml
Expand All @@ -116,8 +134,8 @@ Accept wildcard characters: False
```

### -WhatIf

Displays a message that describes the effect of the command instead of executing the command.
For more information, type the following command: get-help about_commonparameters

```yaml
Type: SwitchParameter
Expand Down
Loading