win32.exe
Application information:
Name: Microsoft Office 2019 ProPlus
Version: 18.08
Architecture: x64
Framework Version: 4.0.30319
Description: Office add-in to display SharePoint Online lists in Office 365.
How do I get the message in PowerShell?
A:
This is the way to get the message:
Write-Host "Hello. PowerShell is running!"
Get-Process explorer | Start-Process -PassThru -WindowStyle Hidden -Wait
/*
* Copyright (c) 2016, WSO2 Inc. ( All Rights Reserved.
*
* WSO2 Inc. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
using Newtonsoft.Json;
namespace WSO2.SDK.ApiManagement.SDK.Test.Fault
{
///
/// A ResourceNotFoundFault with extra details
public class ResourceNotFoundFault : ResourceNotFoundFaultBase
{
///
/// Fault sub-type
[JsonProperty(PropertyName = "faultType")]
public string FaultType { get; set; }
/// Resource URI
Related links:
Comments