Merge pull request 170 from develop into master

This commit is contained in:
Zach Folwick 2015-10-08 17:30:43 +00:00
commit ed39989e66
291 changed files with 45109 additions and 6 deletions

11
.gitignore vendored Normal file
View file

@ -0,0 +1,11 @@
.idea
.config/
.local/
CMakeCache.txt
CMakeFiles/
Makefile
!scripts/Makefile
cmake_install.cmake
scripts/xunittests.xml
scripts/powershell.inc
.bash_history

17
.gitmodules vendored
View file

@ -1,6 +1,15 @@
[submodule "src/monad"]
path = src/monad
url = https://msostc.visualstudio.com/DefaultCollection/PS/_git/monad
[submodule "src/coreclr"]
path = src/coreclr
url = https://github.com/dotnet/coreclr.git
url = https://microsoft.visualstudio.com/DefaultCollection/PowerShell.Monad/_git/monad-sync1
[submodule "ext-src/cppunit"]
path = ext-src/cppunit
url = git://anongit.freedesktop.org/git/libreoffice/cppunit/
[submodule "src/monad-native"]
path = src/monad-native
url = https://msostc.visualstudio.com/DefaultCollection/PS/_git/monad-native
[submodule "src/monad-ext"]
path = src/monad-ext
url = https://msostc.visualstudio.com/DefaultCollection/PS/_git/monad-ext
[submodule "ext-src/pester"]
path = ext-src/pester
url = https://msostc.visualstudio.com/DefaultCollection/PS/_git/Pester

175
README.md Normal file
View file

@ -0,0 +1,175 @@
# PowerShell for Linux
## Getting started
These instructions assume Ubuntu 14.04 LTS, the same as our dependency, [CoreCLR][]. Fortunately you do not have to [build CoreCLR][], as we bundle the dependencies in submodules.
[CoreCLR]: https://github.com/dotnet/coreclr
[build CoreCLR]: https://github.com/dotnet/coreclr/blob/master/Documentation/building/linux-instructions.md
### Obtain the source code
#### Install source control tools
- [Git][], the version control system
- Node.js, to run the Visual Studio Online `mshttps` Git remote helper
- `smbclient`, to obtain mshttps
- `ntpdate`, to update the system time
```sh
sudo apt-get install git nodejs nodejs-legacy smbclient ntpdate
```
#### Setup Git
The user name and email must be set to do just about anything with Git.
```sh
git config --global user.name "First Last"
git config --global user.email "alias@microsoft.com"
```
#### Setup Visual Studio Online
Teach Git to use the `mshttps` protocol for Visual Studio Online. The URL mapping (and `mshttps` itself) is needed for the two factor authentication that internal VSO imposes.
```sh
git config --global url.mshttps://msostc.visualstudio.com/.insteadof https://msostc.visualstudio.com/
git config --global url.mshttps://microsoft.visualstudio.com/.insteadof https://microsoft.visualstudio.com/
```
Download `mshttps` using SMB from a Windows share.
> Alternatively you can get `git-remote-mshttps.tar.gz` on Windows and upload it to your Linux machine.
```sh
smbclient --user=domain\\username --directory=drops\\RemoteHelper.NodeJS\\latest \\\\gitdrop\\ProjectJ -c "get git-remote-mshttps.tar.gz"
```
> If the file transfer fails with `tree connect failed: NT_STATUS_DUPLICATE_NAME`, use `nslookup gitdrop` to obtain its canonical name (currently `osgbldarcfs02.redmond.corp.microsoft.com`) and use it instead.
Install `mshttps`, and update the system time (necessary for authentication with VSO).
```sh
sudo tar -xvf git-remote-mshttps.tar.gz -C /usr/local/bin
sudo chmod +x /usr/local/bin/git-remote-mshttps
sudo ntpdate time.nist.gov
```
#### Download source code
Clone our [monad-linux][] source from Visual Studio Online. We use the `develop` branch, and several submodules, necessitating the arguments.
```sh
git clone -b develop --recursive https://msostc.visualstudio.com/DefaultCollection/PS/_git/monad-linux
```
When checking out a commit (or pulling in commits), you **must** update all the submodules too. Not doing so is the cause of many headaches.
```sh
git submodule update --init --recursive
```
[monad-linux]: https://msostc.visualstudio.com/DefaultCollection/PS/_git/monad-linux
### Setup build environment
If you use Docker, this part is already done for you; just prefix your build commands with `./build.sh`. But you do need Docker.
#### Use Docker
Setting up Docker has been made as simple as running a script.
```sh
wget -qO- https://get.docker.com/ | sh
```
To make Docker work better on Ubuntu, you should also setup a [Docker group][].
```sh
sudo usermod -aG docker <your local user>
```
Then log out and back in. This eliminates the need to `sudo` before every Docker command.
Check the official [installation documentation][] first if you have problems setting it up.
[Docker group]: https://docs.docker.com/installation/ubuntulinux/#create-a-docker-group
[installation documentation]: https://docs.docker.com/installation/ubuntulinux/
##### Technical info
We have an [automated build repository][] on the Docker Hub that provisions an image from this [Dockerfile][]. This image contains all the necessary build dependencies, and is based on Ubuntu 14.04.
Using this image amounts to running an ephemeral container with the local source code mounted as a shared volume, which is precisely what `build.sh` does (as well as pass on command-line arguments). If the `andschwa/magrathea` image is not already present, it is automatically pulled from the Hub.
This is what `build.sh` looks like (there is no need to run this command manually):
```sh
docker run --rm --interactive --tty --volume /absolute/path/to/monad-linux/:/opt/monad --workdir /opt/monad/scripts andschwa/magrathea make run
```
It is run interactively with a tty, and so acts as if a shell had been opened to the container. The actual compilation takes place in the mounted volume, that is, the host machine's local source code repository. The magic of Docker is that the compilation processes take place in the context of the container, and so have all the dependencies satisfied. To prevent literring the host with containers, it is automatically removed when it exits; this is not a problem because all side effects happen on the host's file system, and similarly creating the container requires very minimal overhead.
[automated build repository]: https://registry.hub.docker.com/u/andschwa/magrathea/
[Dockerfile]: https://github.com/andschwa/docker-magrathea/blob/master/Dockerfile
#### Manually install dependencies
> Skip this section if you installed Docker.
Setup the Mono package [repository][] because Ubuntu's Mono packages are out of date.
```sh
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
```
Install necessary packages.
- [Mono][], the C# compiler for Linux
- Nuget, the C# package manager
- libunwind8, used to determine the call-chain
- GCC and G++, for compiling C and C++ native code
- [GNU Make][], for building `monad-linux`
- [CMake][], for building `src/monad-native`
- libicu-dev, for building `src/monad-native`
```sh
sudo apt-get install mono-devel libunwind8 gcc g++ make cmake libicu-dev
```
[repository]: http://www.mono-project.com/docs/getting-started/install/linux/#debian-ubuntu-and-derivatives
[Git]: https://git-scm.com/documentation
[Mono]: http://www.mono-project.com/docs/
[GNU Make]: https://www.gnu.org/software/make/manual/make.html
[CMake]: http://www.cmake.org/cmake/help/v2.8.12/cmake.html
### Building
If you're using the Docker container, just prefix all build steps like so: `./build.sh make test`
1. `cd scripts` since it contains the `Makefile` and `build.sh`
2. `make prepare` will use Nuget to download several dependencies
3. `make all` will build PowerShell for Linux
4. `make run` will execute a demo, `"a","b","c","a","a" | Select-Object -Unique`
5. `make run-interactive` will open an interactive PowerShell console
6. `make test` will execute the unit tests
7. `make clean` will remove the built objects
8. `make cleanall` will also remove the Nuget packages
## TODO: Unit tests
### Adding Pester tests
Pester tests are located in the src/pester-tests folder. The makefile targets "test" and "pester-tests" will run all Pester-based tests.
The steps to add your pester tests are:
- add *.Tests.ps1 files to src/pester-tests
- run "make pester-tests" to run the tests
## TODO: Docker shell-in-a-box
## TODO: Architecture

1
docs/Native Tests.md Normal file
View file

@ -0,0 +1 @@
# Native Code Testing Guide

116
docs/Pester Tests.md Normal file
View file

@ -0,0 +1,116 @@
#Pester Testing Test Guide
## Who this is for
Cmdlet behavior is validated using the Pester testing framework. The purpose of this document is to create a single standard to maximize unit test coverage while minimizing confusion on expectations. What follows is a working document intended to guide those writing Pester unit tests for PSL.
Unit testing is done not only to validate that the block of code works as expected, but also to assist the developer to know precisely where in the code to look; in some cases, seeing the source code may inspire better unit tests. In many cases, a unit test *is* the only documented specification. Fortunately, the MSDN is a great source of information about Cmdlets.
Test suites need to be created and many cmdlets added and unit-tested. The following list is to be used to guide the thought process of the developer in writing a suite in minimal time, while enhancing quality.
Test suites should proceed as functional and system tests of the cmdlets, and the code treated as a black box for the purpose of test suite design.
### Use of Mocks
It is often necessary for the code to interact with the system or other components. When possible, use Mock objects to facilitate this in order to minimize external dependencies. Note: creating a Mock in PSL causes PowerShell to look at the Mock, never actually hitting any C# code. Cmdlets cannot be tested using Mocks.
### Aliases
Each cmdlet with an alias must be tested with all of its aliases at least once to verify the code path calls the original function.
## Testing Standards
### Readability
Every effort should be made to maximize readability of code. Code is written for the developer in the future to debug- not for the developer writing the code.
1) When assertions are on consecutive lines, the pipes should line up:
```sh
MyFirstCondition | Should Be 0
MySecondCondition | Should Be 1
```
This is less readable than:
```sh
MyFirstCondition | Should Be 0
MySecondCondition | Should Be 1
```
So the second section of code should instead be used. The same style should be followed for assignments of variables on consecutive lines:
```sh
$var1 = <expression 1>
$variable2 = <expression 2>
$var3 = <expression 3>
$typeCollection1 = <expression 4>
$object1 = <expression>
... etc
```
is much less readable than
```sh
$var1 = <expression 1>
$variable2 = <expression 2>
$var3 = <expression 3>
$typeCollection1 = <expression 4>
$object1 = <expression 5>
... etc
```
So all assignment statements must be aligned.
Other style standards are no less important to readability of the code:
2) Use readable and meaningful variable name when assigning variables.
3) Do not make large functions. Tests should be simple: define -> manipulate -> assert
4) Do not use tabs. Tabs are rendered differently depending upon the machine. This greatly affects readability.
5) Remove the first 3 auto-generated lines of each .Tests.ps1 file. This is created automatically by Pester and is unnecessary. Each .Test.ps1 file should begin with a Describe block.
6) Discard the auto-generated function file that is generated in tandem with the .Tests.ps1 file
7) Name the test file "Test-<cmdlet name > when you create a new test fixture.
8) Each test describes a behavior- use the word "Should" at the beginning of each test description- so it reads "It 'Should..."
### Basic Unit Tests
The following table should suffice to inspire in the developer sufficient content to create a suite of tests.
test # | test name | entry criteria/setup | exit criteria/assertion
-------|-----------|----------------------|------------------------
01 | Should be able to be called | without params (if applicable) | no throw
02 | Should be able to be called | minimal required params | no throw, expected output
03 | Should be able to use the X alias | minimal required params | no throw, expected output
04 | Should return the proper data type | required params | no throw, proper data type
05 | Should be able to accept piped input | piped input | expected output
06 | Should be able to call using the X parameter | use X parameter | no throw, expected output
07 | Should be able to call using the Y parameter | use Y parameter | no throw, expected output
08 | Should be able to call using the Z parameter | use Z parameter | no throw, expected output
09 | Should throw under condition X | create condition X | Throw error x
10 | Should throw under condition Y | create condition Y | Throw error y
11 | Should throw under condition Z | create condition Z | Throw error z
These are the **basic** unit tests required to verify the functionality of any Cmdlet. If the above questions cannot be answered for each Cmdlet, then they cannot be verified to work.
Look at the existing suites of pester tests located within `monad-linux/src/pester-test/` and use that as inspiration.
##Running Pester Tests
Pester tests may be run from outside of PowerShell via the command line. Build PowerShell and Pester using (assuming you're in the build folder) `./build.sh make ../src/pester-test/<filename>` or `./build.sh make pester-tests`

34
docs/Testing.md Normal file
View file

@ -0,0 +1,34 @@
# PowerShell for Linux
This readme is targeted at PowerShell for Linux users looking to write test suites to ensure quality of PowerShell products.
## Getting started
These instructions assume Ubuntu 14.04 LTS. It is assumed that PowerShell for Linux is currently installed on the system.
### Obtain PowerShell
PowerShell is required to enable and run the test suites.
### Testing technology
Technology | Purpose
-------|------
Pester | default cmdlet test framework
xUnit | default C# test framework
cppUnit | default C/C++ testing framework
### Running the test suite
Tests can be run from the `scripts` folder. If you are currently in `monad-linux/scripts`, then run `./build.sh make test` to run the complete tests suite. The table below shows the commands to run for the various test products bundled with Powershell for Linux (the table assumes the current working directory is `monad-linux/scripts`).
It is strongly recommended that before major changes are tested, that users run `./build.sh make clean cleanall prepare` to ensure the environment is completely clean.
Technology | Run Method
------|---------
Pester | ./build.sh make pester-tests
xUnit | ./build.sh make xunit-tests
cppunit | ./build.sh make native-tests
hashbang tests | ./build.sh make hashbang-tests
within the `scripts` directory, you may also wish to run Pester tests on a single file. This can be done easily using `./build.sh make {path/from/scripts/to/pester/test}` (E.g, `./build.sh make ../src/pester-test/Test-TESTFILE.Test.ps1`).

1
docs/xUnit Tests.md Normal file
View file

@ -0,0 +1 @@
#xUnit Testing Guide

1
ext-src/cppunit Submodule

@ -0,0 +1 @@
Subproject commit 9c5b50060411ec71ac1583ae96e8f4652803b564

1
ext-src/pester Submodule

@ -0,0 +1 @@
Subproject commit dc5d388532499267e68c17c0a96153f7bc09c437

24
scripts/.gitignore vendored Normal file
View file

@ -0,0 +1,24 @@
System.Collections.Immutable.*/
System.Reflection.Metadata.*/
Microsoft.Net.ToolsetCompilers.*/
dotnetlibs/
gen-all-files.txt
monad-src.diff
output.txt
string-resources-files.txt
string-resources-orig.txt
xunit.abstractions.*/
xunit.core.*/
xunit.extensibility.core.*/
xunit.runner.console.*/
TypeCatalogGen.exe
System.Collections.Immutable.dll
System.Reflection.Metadata.dll
commands-management-win.mk
commands-utility-win.mk
management-infrastructure-win.mk
system-automation-win.mk
CorePsTypeCatalog.cs
buildtemp/
exec_env/

8
scripts/3rdparty/hashbang/README.txt vendored Normal file
View file

@ -0,0 +1,8 @@
Usage:
PATH=$PATH:/absolute/path/to/powershell/app_base ./script.ps1
Comment:
The script assumes that /usr/bin/env can execute runps-file.sh.

5
scripts/3rdparty/hashbang/script.ps1 vendored Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env runps-file.sh
get-process
get-module

39
scripts/Dockerfile Normal file
View file

@ -0,0 +1,39 @@
# image_ps
#
# VERSION 0.0.1
#FROM ubuntu:14.04
FROM phusion/baseimage:latest
MAINTAINER Peter Honeder <peterhon@microsoft.com>
CMD ["/sbin/my_init"]
RUN ifconfig
RUN cat /etc/resolv.conf
RUN ping -c 1 8.8.8.8
RUN apt-get update
RUN apt-get install -y openssh-server wget libstdc++6 libunwind8 libicu52
#RUN mkdir /var/run/sshd
RUN echo 'root:pass' | chpasswd
RUN adduser --shell /opt/exec_env/app_base/runps.sh --disabled-password --gecos "" test1
RUN echo 'test1:pass' | chpasswd
RUN sed -i 's/PermitRootLogin without-password/PermitRootLogin yes/' /etc/ssh/sshd_config
RUN cd /root && wget https://github.com/anilgulecha/shellinabox/releases/download/2.14.2/shellinabox_2.14-1_amd64.deb
RUN dpkg -i /root/shellinabox_2.14-1_amd64.deb
# SSH login fix. Otherwise user is kicked off after login
RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
ENV NOTVISIBLE "in users profile"
RUN echo "export VISIBLE=now" >> /etc/profile
COPY exec_env/ /opt/exec_env/
RUN chmod -R ugo+rX /opt/exec_env
RUN mkdir /etc/service/shellinaboxd
ADD shellinaboxd-init.sh /etc/service/shellinaboxd/run
EXPOSE 22
EXPOSE 4201

250
scripts/Makefile Normal file
View file

@ -0,0 +1,250 @@
.PHONY: all
# this should go away and be automatically generated
include assembly-load-context.mk
# main references to the CoreCLR reference assemblies
MONAD_EXT=../src/monad-ext
TARGETING_PACK=$(MONAD_EXT)/coreclr/TargetingPack
COREREF=$(addprefix -r:, $(shell ls $(TARGETING_PACK)/*.dll))
CORECLR_ASSEMBLY_BASE=$(MONAD_EXT)/coreclr/Runtime
# powershell-run is the main powershell executable
include powershell-run.mk
# this variable is needed by module specific include makefiles below
ADMIN_GIT_ROOT=../src/monad
# these are automatically generated from the PowerShell build sytem
# - System.Management.Automation.dll (the main PS dll)
# - commands/modules (they contain cmdlets): management and utility
# - Microsoft.Management.Infrastructure.dll (the first dll in the remoting code paths)
include system-automation.mk
include commands-management.mk
include commands-utility.mk
include management-infrastructure.mk
include security.mk
MI_NATIVE_REF=-r:dotnetlibs/Microsoft.Management.Infrastructure.Native.dll
MI_REF_ASSEMBLY=-r:$(MONAD_EXT)/PS/PS_refs_modil/microsoft.management.infrastructure.metadata_dll
MI_ASSEMBLY=dotnetlibs/Microsoft.Management.Infrastructure.dll
MI_REF=-r:$(MI_ASSEMBLY)
PRODUCT_BASE_REFS=$(COREREF)
PRODUCT_MI_REFS=$(COREREF) $(MI_NATIVE_REF)
PRODUCT_PS_REFS=$(COREREF) $(MI_REF) -r:dotnetlibs/$(ASSEMBLY_LOAD_CONTEXT_TARGET)
PRODUCT_COMMANDS_REFS=$(COREREF) -r:dotnetlibs/System.Management.Automation.dll
# compilers
# - Roslyn's csc is used for all the PS code
# - Mono's mcs is used for build helper tools
CSC=mono buildtemp/Microsoft.Net.Compilers.1.0.0/tools/csc.exe
MCS=mcs
CSCOPTS_BASE=-noconfig -nostdlib
CSCOPTS_LIB=$(CSCOPTS_BASE) -target:library
CSCOPTS_LIB_PS=$(CSCOPTS_LIB) -unsafe -define:CORECLR -define:_CORECLR /nowarn:CS1701,CS1702
RUN_TARGETS=$(POWERSHELL_RUN_TARGETS) $(addprefix dotnetlibs/, Microsoft.PowerShell.Commands.Management.dll Microsoft.PowerShell.Commands.Utility.dll Microsoft.PowerShell.Security.dll api-ms-win-core-registry-l1-1-0.dll host_cmdline)
all: dotnetlibs/System.Management.Automation.dll $(RUN_TARGETS) dotnetlibs/$(ASSEMBLY_LOAD_CONTEXT_TARGET)
# this is the build rule for SMA.dll
dotnetlibs/System.Management.Automation.dll: prepare $(SYS_AUTO_SRCS) dotnetlibs/Microsoft.Management.Infrastructure.dll ../src/assembly-info/System.Management.Automation.assembly-info.cs dotnetlibs/$(ASSEMBLY_LOAD_CONTEXT_TARGET) $(SYS_AUTO_RES_SRCS) $(SYS_AUTO_RES_CS_SRCS)
$(CSC) -out:$@ $(CSCOPTS_LIB_PS) $(PRODUCT_PS_REFS) $(SYS_AUTO_SRCS) $(SYS_AUTO_RES_REF) $(SYS_AUTO_RES_CS_SRCS) ../src/assembly-info/System.Management.Automation.assembly-info.cs
# this is the build rule for MMI.dll
dotnetlibs/Microsoft.Management.Infrastructure.dll: prepare $(MAN_INFRA_SRCS) dotnetlibs/Microsoft.Management.Infrastructure.Native.dll ../src/assembly-info/Microsoft.Management.Infrastructure.assembly-info.cs $(MAN_INFRA_RES_SRCS) $(MAN_INFRA_RES_CS_SRCS)
$(CSC) -out:$@ $(CSCOPTS_LIB_PS) $(PRODUCT_MI_REFS) $(MAN_INFRA_SRCS) $(MAN_INFRA_RES_REF) $(MAN_INFRA_RES_CS_SRCS) ../src/assembly-info/Microsoft.Management.Infrastructure.assembly-info.cs
# Commands
dotnetlibs/Microsoft.PowerShell.Commands.Management.dll: prepare $(COMMANDS_MANAGEMENT_SRCS) dotnetlibs/System.Management.Automation.dll dotnetlibs/Microsoft.PowerShell.Security.dll $(COMMANDS_MANAGEMENT_RES_SRCS) $(COMMANDS_MANAGEMENT_RES_CS_SRCS) $(MI_ASSEMBLY)
$(CSC) -out:$@ $(CSCOPTS_LIB_PS) $(PRODUCT_COMMANDS_REFS) $(COMMANDS_MANAGEMENT_SRCS) $(COMMANDS_MANAGEMENT_RES_CS_SRCS) $(COMMANDS_MANAGEMENT_RES_REF) $(MI_REF) -r:dotnetlibs/Microsoft.PowerShell.Security.dll
dotnetlibs/Microsoft.PowerShell.Commands.Utility.dll: prepare $(COMMANDS_UTILITY_SRCS) dotnetlibs/System.Management.Automation.dll $(COMMANDS_UTILITY_RES_SRCS) $(COMMANDS_UTILITY_RES_CS_SRCS)
$(CSC) -out:$@ $(CSCOPTS_LIB_PS) $(PRODUCT_COMMANDS_REFS) $(COMMANDS_UTILITY_SRCS) $(COMMANDS_UTILITY_RES_CS_SRCS) $(COMMANDS_UTILITY_RES_REF)
dotnetlibs/Microsoft.PowerShell.Security.dll: prepare $(SECURITY_SRCS) $(SECURITY_RES_SRCS) $(SECURITY_RES_CS_SRCS)
$(CSC) -out:$@ $(CSCOPTS_LIB_PS) $(PRODUCT_COMMANDS_REFS) $(SECURITY_SRCS) $(SECURITY_RES_CS_SRCS) $(SECURITY_RES_REF)
# assembly load context
dotnetlibs/$(ASSEMBLY_LOAD_CONTEXT_TARGET): prepare $(ASSEMBLY_LOAD_CONTEXT_SRCS)
$(CSC) -out:$@ $(CSCOPTS_LIB_PS) $(PRODUCT_BASE_REFS) $(ASSEMBLY_LOAD_CONTEXT_SRCS)
# this one is built from stubs
MI_STUBS=../src/stubs/Microsoft.Management.Infrastructure.Native-stub.cs ../src/stubs/Microsoft.Management.Infrastructure.Native-stub-assembly-info.cs
dotnetlibs/Microsoft.Management.Infrastructure.Native.dll: prepare $(MI_STUBS)
$(CSC) -out:$@ $(CSCOPTS_LIB_PS) $(PRODUCT_BASE_REFS) $(MI_STUBS)
# this creates the type catalog generator
MPATH=/usr/lib/mono/4.5/Facades
REFLECTION_METADATA=buildtemp/System.Reflection.Metadata.1.0.22/lib/dotnet/System.Reflection.Metadata.dll
COLLECTIONS_IMMUTABLE=buildtemp/System.Collections.Immutable.1.1.37/lib/dotnet/System.Collections.Immutable.dll
buildtemp/TypeCatalogGen.exe: ../src/monad/monad/nttargets/assemblies/core/PSAssemblyLoadContext/TypeCatalogGen/TypeCatalogGen.cs $(REFLECTION_METADATA) $(COLLECTIONS_IMMUTABLE)
$(MCS) -out:$@ -target:exe -pkg:dotnet $(addprefix -r:, $(REFLECTION_METADATA) $(COLLECTIONS_IMMUTABLE) $(MPATH)/System.Runtime.dll $(MPATH)/System.Reflection.Primitives.dll $(MPATH)/System.IO.dll) $<
# this generates the necessary file of CoreCLR references that is an artifact of the Windows build process
# since we don't have Make 4.1, we can't use $(file), and using @echo makes the escaping tricky
# the list of references MUST be line-by-line, to match '^\$\(PS_PROFILE_REF_PATH\)\\(.+);\s*\\$'
REFERENCE_ASSEMBLIES=$(notdir $(shell ls $(TARGETING_PACK)/*.dll))
PROFILE_REFERENCES=$(addsuffix ;\\\n, $(addprefix $$(PS_PROFILE_REF_PATH)\, $(REFERENCE_ASSEMBLIES)))
powershell.inc:
@echo 'PROFILE_REF_PATH=$$(SDK_REF_PATH)\Profiles' > $@
@echo 'PS_PROFILE_REF_PATH=$$(PROFILE_REF_PATH)\PowerShell' >> $@
@echo 'PROFILE_REFERENCES=\\' >> $@
@echo '$(PROFILE_REFERENCES)' >> $@
# generate the Core PS type catalog
# this comes from: ../src/monad/monad/nttargets/assemblies/core/PSAssemblyLoadContext/makefile.inc
CorePsTypeCatalog.cs: powershell.inc buildtemp/TypeCatalogGen.exe
MONO_PATH=$(dir $(REFLECTION_METADATA)):$(dir $(COLLECTIONS_IMMUTABLE)) mono buildtemp/TypeCatalogGen.exe $< $@ $(MONAD_EXT)/coreclr/TargetingPack
# the pinvoke library libps.so
LIBPS_BUILD=buildtemp/libps-build
$(LIBPS_BUILD)/Makefile: ../src/monad-native/src/CMakeLists.txt
mkdir -p $(LIBPS_BUILD)
# cached files can change the path to be incorrect, this must be cleaned
rm -f ../src/monad-native/src/CMakeCache.txt
rm -f ../src/monad-native/src/cmake_install.cmake
cd $(LIBPS_BUILD) && cmake ../../../src/monad-native/src/
NATIVE_BINARIES=libps.so monad_native host_cmdline
$(addprefix dotnetlibs/, $(NATIVE_BINARIES)): $(LIBPS_BUILD)/Makefile
$(MAKE) -j -C $(LIBPS_BUILD)
mkdir -p dotnetlibs
cp $(addprefix $(LIBPS_BUILD)/, $(notdir $@)) dotnetlibs
libps.so-test: $(addprefix dotnetlibs/, libps.so monad_native)
cd dotnetlibs && LD_LIBRARY_PATH=. ./monad_native
# this is a windows dll that is needed because CoreCLR tries to access
# registry functions that don't exist on Linux and there is no other good
# way of fixing this right now
# (TODO linux: this should be removed by addressing it in CoreCLR)
dotnetlibs/api-ms-win-core-registry-l1-1-0.dll: ../src/win-dll/lib-api-ms-win-core-registry-l1-1-0.c
gcc -o $@ -fPIC -shared -Wall $^
nuget.exe:
wget 'https://dist.nuget.org/win-x86-commandline/latest/nuget.exe'
buildtemp:
mkdir -p buildtemp
prepare: nuget.exe buildtemp
mono nuget.exe restore -PackagesDirectory buildtemp
# this is the execution environment from which all managed code is run
APP_BASE=exec_env/app_base
# this is an internal target, it's not intended to be called manually
#
# it will:
# - create necessary directories for deployment layout
# - copy all the PowerShell stuff into PowerShell's app_base
# - copy the custom host and other scripts into PowerShell's app_base
# - copy PS modules
#
# This rule does not copy coreclr, because the selection of debug or
# release CoreCLR depends on the actual run target.
internal-prepare-exec_env: runps.sh $(POWERSHELL_RUN_TARGETS)
rm -rf exec_env
mkdir -p $(APP_BASE)/Modules
mkdir -p exec_env/coreclr
cp ../src/monad/monad/miscfiles/display/*.ps1xml $(APP_BASE)
cp ../src/monad/monad/miscfiles/types/CoreClr/*.ps1xml $(APP_BASE)
cp -r ../src/monad/monad/miscfiles/modules/* $(APP_BASE)/Modules
cp -r dotnetlibs/*.dll $(APP_BASE)
cp -r dotnetlibs/*.exe $(APP_BASE)
cp -r dotnetlibs/*.so $(APP_BASE)
cp dotnetlibs/host_cmdline $(APP_BASE)
cp -r ../ext-src/pester $(APP_BASE)/Modules/Pester
cp runps*.sh $(APP_BASE)
internal-prepare-clr:
cp -r $(CORECLR_ASSEMBLY_BASE)/* exec_env/coreclr/
run: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr
# execute a cmdlet, this will auto-load the utility module and print a, b and c in 3 lines
$(APP_BASE)/runps-simple.sh '"a","b","c","a","a" | Select-Object -Unique'
run-interactive: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr
$(APP_BASE)/runps.sh
run-file: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr
$(APP_BASE)/runps.sh --file $(PSSCRIPT)
# easy way to run individual PowerShell scripts, `make script.ps1` where the path is relative to monad-linux/scripts (with TEMP set for Pester)
%.ps1: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr
TEMP=/tmp $(APP_BASE)/runps.sh --file ../../$@
run-debugclr: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr
PAL_DBG_CHANNELS="+LOADER.TRACE" $(APP_BASE)/runps-simple.sh get-location
native-tests: dotnetlibs/monad_native
# execute the native C++ tests
cd dotnetlibs && ./monad_native
# xUnit tests
TEST_FOLDER=../src/ps_test
TEST_SRCS=$(addprefix $(TEST_FOLDER)/, test_*.cs)
$(APP_BASE)/xunit%: $(MONAD_EXT)/xunit/xunit%
cp -f $^ $@
$(APP_BASE)/ps_test.dll: prepare $(TEST_SRCS) $(addprefix $(APP_BASE)/, xunit.core.dll xunit.assert.dll) $(addprefix dotnetlibs/, System.Management.Automation.dll Microsoft.PowerShell.Commands.Management.dll $(ASSEMBLY_LOAD_CONTEXT_TARGET))
$(CSC) $(CSCOPTS_LIB) -out:$@ $(addprefix -r:$(APP_BASE)/, xunit.core.dll xunit.assert.dll) $(addprefix -r:dotnetlibs/, System.Management.Automation.dll $(ASSEMBLY_LOAD_CONTEXT_TARGET)) $(COREREF) $(TEST_SRCS)
xunit-tests: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr $(addprefix $(APP_BASE)/, ps_test.dll xunit.console.netcore.exe xunit.runner.utility.dll xunit.abstractions.dll xunit.execution.dll)
# execute the xUnit runner, with XML output
$(APP_BASE)/runps-test.sh ps_test.dll -xml ../../xunittests.xml
pester-tests: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr
# execute the Pester tests, which needs a TEMP environment variable to be set
$(APP_BASE)/runps-simple.sh 'cd ../../../src/pester-tests; $$env:TEMP="/tmp"; invoke-pester'
hashbang-tests: all
# execute the 3rdparty/hashbang example
PATH=$(PATH):$(shell pwd)/$(APP_BASE) $(shell pwd)/3rdparty/hashbang/script.ps1
test: native-tests xunit-tests pester-tests hashbang-tests
trace: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr
$(APP_BASE)/runps-simple-trace.sh get-location
debug: $(RUN_TARGETS) internal-prepare-exec_env internal-prepare-clr
# quoting here is a bit special if strings are passed in, because lldb seems to forward arguments strangely
$(APP_BASE)/runps-simple-debug.sh get-location
# clean native library, libps
clean-native:
rm -rf buildtemp/libps-build
clean:
rm -rf dotnetlibs exec_env powershell.inc
# clean built stuff + prepare step
cleanall: clean clean-native
rm -rf buildtemp xunittests.xml
docker-build:
docker build --no-cache=false -t image_ps .
$(eval INSTANCE_ID := $(shell docker inspect -f '{{.Id}}' image_ps))
docker-run: docker-build
# docker port is 4201 for shellinabox by default, but can be overridden
$(eval SHELLINABOX_PORT := $(shell if [ "${SHELLINABOX_PORT}" = "" ]; then echo 4201; else echo ${SHELLINABOX_PORT}; fi))
@echo "SHELLINABOX_PORT=${SHELLINABOX_PORT}"
docker run -d -P -p $(SHELLINABOX_PORT):4201 --name test_ps image_ps
# those two ports are container ports, so they can be hard-coded
docker port test_ps 22
docker port test_ps 4201
$(eval HOST_IP := $(shell ifconfig eth0 | awk '/inet addr/{print substr($$2,6)}'))
@echo "connect to docker at: http://${HOST_IP}:${SHELLINABOX_PORT}/"
@echo "use username: 'test1' and password: 'pass' to connect"
docker-stop:
docker stop test_ps
docker rm test_ps

View file

@ -0,0 +1,8 @@
ASSEMBLY_LOAD_CONTEXT_TARGET=Microsoft.PowerShell.CoreCLR.AssemblyLoadContext.dll
ASSEMBLY_LOAD_CONTEXT_SRCS = \
../src/assembly-info/Microsoft.PowerShell.CoreCLR.AssemblyLoadContext.assembly-info.cs \
../src/monad/monad/src/CoreCLR/CorePsAssemblyLoadContext.cs \
CorePsTypeCatalog.cs

28
scripts/build-run.sh Executable file
View file

@ -0,0 +1,28 @@
#!/usr/bin/env bash
CUID=$(id -u)
CUSER=$(id -un)
CGID=$(id -g)
CGROUP=$(id -gn)
DIR=/opt/monad-linux
VOLUME=$(dirname $(pwd))/:$DIR
# creates new user in container matching the local user so that
# artifacts will be owned by the local user; set IMPERSONATE to false
# to disable and run as root, defaults to true
if [[ ! $IMPERSONATE ]]; then IMPERSONATE=true; fi
impersonate()
{
if ! $IMPERSONATE; then return; fi
echo \
groupadd -g $CGID $CGROUP '&&' \
useradd -u $CUID -g $CGID -d $DIR $CUSER '&&' \
sudo --set-home -u $CUSER -g $CGROUP
}
docker run --rm \
--volume $VOLUME \
--workdir $DIR/scripts \
$DOCKERFLAGS \
andschwa/magrathea:latest \
bash -c "$(impersonate) $*"

5
scripts/build-tty.sh Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Runs with a pseudo tty so that interactive shells can be opened
export DOCKERFLAGS="--interactive --tty"
./build-run.sh "$*"

5
scripts/build.sh Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Runs by non-interactively, just attaches output
export DOCKERFLAGS="--attach STDOUT --attach STDERR"
./build-run.sh "$*"

View file

@ -0,0 +1,154 @@
# This is an automatically generated file for the make dependency: COMMANDS_MANAGEMENT
COMMANDS_MANAGEMENT_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/commands/management/AddContentCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/ClearContentCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/ClearPropertyCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/CombinePathCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/CommandsCommon.cs \
../../../jws/pswin/admin/monad/src/commands/management/ContentCommandBase.cs \
../../../jws/pswin/admin/monad/src/commands/management/ConvertPathCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/CopyPropertyCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/GetChildrenCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/GetContentCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/GetPropertyCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/MovePropertyCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/Navigation.cs \
../../../jws/pswin/admin/monad/src/commands/management/NewPropertyCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/ParsePathCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/PassThroughContentCommandBase.cs \
../../../jws/pswin/admin/monad/src/commands/management/PassThroughPropertyCommandBase.cs \
../../../jws/pswin/admin/monad/src/commands/management/PingPathCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/PropertyCommandBase.cs \
../../../jws/pswin/admin/monad/src/commands/management/RemovePropertyCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/RenamePropertyCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/ResolvePathCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/SetContentCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/SetPropertyCommand.cs \
../../../jws/pswin/admin/monad/src/commands/management/WriteContentCommandBase.cs \
../../../jws/pswin/admin/monad/src/commands/management/Process.cs \
../../../jws/pswin/admin/monad/src/commands/management/Service.cs \
../../../jws/pswin/admin/monad/src/commands/management/Computer.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/SessionBasedWrapper.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimWrapper.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimQuery.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/clientSideQuery.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimConverter.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/CimJobException.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimJobContext.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimCmdletInvocationContext.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimCmdletDefinitionContext.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimChildJobBase.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/QueryJobBase.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/QueryJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/EnumerateAssociatedInstancesJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/MethodInvocationJobBase.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/PropertySettingJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/CreateInstanceJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/ModifyInstanceJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/DeleteInstanceJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/ExtrinsicMethodInvocationJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/InstanceMethodInvocationJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/StaticMethodInvocationJob.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/TerminatingErrorTracker.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimOperationOptionsHelper.cs \
COMMANDS_MANAGEMENT_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/commands/management/AddContentCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/ClearContentCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/ClearPropertyCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/CombinePathCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/CommandsCommon.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/ContentCommandBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/ConvertPathCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/CopyPropertyCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/GetChildrenCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/GetContentCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/GetPropertyCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/MovePropertyCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/Navigation.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/NewPropertyCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/ParsePathCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/PassThroughContentCommandBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/PassThroughPropertyCommandBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/PingPathCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/PropertyCommandBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/RemovePropertyCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/RenamePropertyCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/ResolvePathCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/SetContentCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/SetPropertyCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/WriteContentCommandBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/Process.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/Service.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/management/Computer.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/SessionBasedWrapper.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimWrapper.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimQuery.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/clientSideQuery.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimConverter.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/CimJobException.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimJobContext.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimCmdletInvocationContext.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimCmdletDefinitionContext.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimChildJobBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/QueryJobBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/QueryJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/EnumerateAssociatedInstancesJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/MethodInvocationJobBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/PropertySettingJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/CreateInstanceJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/ModifyInstanceJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/DeleteInstanceJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/ExtrinsicMethodInvocationJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/InstanceMethodInvocationJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/StaticMethodInvocationJob.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/TerminatingErrorTracker.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimOperationOptionsHelper.cs \
COMMANDS_MANAGEMENT_RES_BASE_PATH=../../../jws/pswin/admin/monad/src/commands/management/resources
COMMANDS_MANAGEMENT_RES_GEN_PATH=gen/COMMANDS_MANAGEMENT
COMMANDS_MANAGEMENT_RES_GEN_PATH_WIN=gen\COMMANDS_MANAGEMENT
COMMANDS_MANAGEMENT_RESX_SRCS=\
../../../jws/pswin/admin/monad/src/commands/management/resources/CmdletizationResources.resx \
../../../jws/pswin/admin/monad/src/commands/management/resources/ProcessResources.resx \
../../../jws/pswin/admin/monad/src/commands/management/resources/ServiceResources.resx \
../../../jws/pswin/admin/monad/src/commands/management/resources/ComputerResources.resx \
../../../jws/pswin/admin/monad/src/commands/management/resources/NavigationResources.resx \
COMMANDS_MANAGEMENT_RES_SRCS=\
gen/COMMANDS_MANAGEMENT/CmdletizationResources.resources \
gen/COMMANDS_MANAGEMENT/ProcessResources.resources \
gen/COMMANDS_MANAGEMENT/ServiceResources.resources \
gen/COMMANDS_MANAGEMENT/ComputerResources.resources \
gen/COMMANDS_MANAGEMENT/NavigationResources.resources \
COMMANDS_MANAGEMENT_RES_CS_SRCS=\
gen/COMMANDS_MANAGEMENT/CmdletizationResources.cs \
gen/COMMANDS_MANAGEMENT/ProcessResources.cs \
gen/COMMANDS_MANAGEMENT/ServiceResources.cs \
gen/COMMANDS_MANAGEMENT/ComputerResources.cs \
gen/COMMANDS_MANAGEMENT/NavigationResources.cs \
COMMANDS_MANAGEMENT_RES_REF=\
-resource:gen/COMMANDS_MANAGEMENT/CmdletizationResources.resources \
-resource:gen/COMMANDS_MANAGEMENT/ProcessResources.resources \
-resource:gen/COMMANDS_MANAGEMENT/ServiceResources.resources \
-resource:gen/COMMANDS_MANAGEMENT/ComputerResources.resources \
-resource:gen/COMMANDS_MANAGEMENT/NavigationResources.resources \
COMMANDS_MANAGEMENT_make_rule_RES_SRCS: $(COMMANDS_MANAGEMENT_RES_SRCS)
COMMANDS_MANAGEMENT_make_rule_RES_CS_SRCS: $(COMMANDS_MANAGEMENT_RES_CS_SRCS)
COMMANDS_MANAGEMENT_TARGET=Microsoft.PowerShell.Commands.Management

254
scripts/commands-utility.mk Normal file
View file

@ -0,0 +1,254 @@
# This is an automatically generated file for the make dependency: COMMANDS_UTILITY
COMMANDS_UTILITY_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/commands/utility/new-object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Measure-Object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/select-object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/sort-object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/ObjectCommandComparer.cs \
../../../jws/pswin/admin/monad/src/commands/utility/OrderObjectBase.cs \
../../../jws/pswin/admin/monad/src/commands/utility/write.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Var.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetMember.cs \
../../../jws/pswin/admin/monad/src/commands/utility/group-object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/WriteConsoleCmdlet.cs \
../../../jws/pswin/admin/monad/src/commands/utility/ConsoleColorCmdlet.cs \
../../../jws/pswin/admin/monad/src/commands/utility/AddMember.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Write-Object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/StartSleepCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetCultureCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetUICultureCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Get-PSCallStack.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetUnique.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetDateCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/SetDateCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/MatchString.cs \
../../../jws/pswin/admin/monad/src/commands/utility/compare-object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetHostCmdlet.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetRandomCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/InvokeCommandCmdlet.cs \
../../../jws/pswin/admin/monad/src/commands/utility/NewTimeSpanCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/tee-object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/TimeExpressionCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/UnblockFile.cs \
../../../jws/pswin/admin/monad/src/commands/utility/UtilityCommon.cs \
../../../jws/pswin/admin/monad/src/commands/utility/SetAliasCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetAliasCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/NewAliasCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/WriteAliasCommandBase.cs \
../../../jws/pswin/admin/monad/src/commands/utility/ExportAliasCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/ImportAliasCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Import-LocalizedData.cs \
../../../jws/pswin/admin/monad/src/commands/utility/ConvertFrom-StringData.cs \
../../../jws/pswin/admin/monad/src/commands/utility/ReadConsoleCmdlet.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Csv.cs \
../../../jws/pswin/admin/monad/src/commands/utility/CSVCommands.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Set-PSBreakpoint.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Get-PSBreakpoint.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Remove-PSBreakpoint.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Enable-PSBreakpoint.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Disable-PSBreakpoint.cs \
../../../jws/pswin/admin/monad/src/commands/utility/DebugRunspaceCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetRunspaceCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/EnableDisableRunspaceDebugCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/WriteProgressCmdlet.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Update-Data.cs \
../../../jws/pswin/admin/monad/src/commands/utility/Update-TypeData.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/common/GetFormatDataCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/common/WriteFormatDataCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/format-list/Format-List.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/format-object/format-object.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/format-table/Format-Table.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/format-wide/Format-Wide.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/out-file/Out-File.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/out-string/out-string.cs \
../../../jws/pswin/admin/monad/src/commands/utility/RegisterObjectEventCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/RegisterPSEventCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/WaitEventCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetEventCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/RemoveEventCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/GetEventSubscriberCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/UnregisterEventCommand.cs \
../../../jws/pswin/admin/monad/src/commands/utility/neweventcommand.cs \
COMMANDS_UTILITY_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/new-object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Measure-Object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/select-object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/sort-object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/ObjectCommandComparer.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/OrderObjectBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/write.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Var.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetMember.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/group-object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/WriteConsoleCmdlet.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/ConsoleColorCmdlet.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/AddMember.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Write-Object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/StartSleepCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetCultureCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetUICultureCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Get-PSCallStack.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetUnique.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetDateCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/SetDateCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/MatchString.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/compare-object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetHostCmdlet.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetRandomCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/InvokeCommandCmdlet.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/NewTimeSpanCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/tee-object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/TimeExpressionCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/UnblockFile.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/UtilityCommon.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/SetAliasCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetAliasCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/NewAliasCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/WriteAliasCommandBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/ExportAliasCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/ImportAliasCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Import-LocalizedData.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/ConvertFrom-StringData.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/ReadConsoleCmdlet.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Csv.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/CSVCommands.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Set-PSBreakpoint.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Get-PSBreakpoint.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Remove-PSBreakpoint.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Enable-PSBreakpoint.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Disable-PSBreakpoint.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/DebugRunspaceCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetRunspaceCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/EnableDisableRunspaceDebugCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/WriteProgressCmdlet.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Update-Data.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/Update-TypeData.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/common/GetFormatDataCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/common/WriteFormatDataCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/format-list/Format-List.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/format-object/format-object.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/format-table/Format-Table.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/format-wide/Format-Wide.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/out-file/Out-File.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/out-string/out-string.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/RegisterObjectEventCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/RegisterPSEventCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/WaitEventCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetEventCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/RemoveEventCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetEventSubscriberCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/UnregisterEventCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/neweventcommand.cs \
COMMANDS_UTILITY_RES_BASE_PATH=../../../jws/pswin/admin/monad/src/commands/utility/resources
COMMANDS_UTILITY_RES_GEN_PATH=gen/COMMANDS_UTILITY
COMMANDS_UTILITY_RES_GEN_PATH_WIN=gen\COMMANDS_UTILITY
COMMANDS_UTILITY_RESX_SRCS=\
../../../jws/pswin/admin/monad/src/commands/utility/resources/CsvCommandStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/Debugger.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/EventingStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/NewObjectStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/MeasureObjectStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/MatchStringStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/SelectObjectStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/SortObjectStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/WriteErrorStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/VariableCommandStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/AddTypeStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/GetMember.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/GetRandomCommandStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/UtilityCommonStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/HostStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/AddMember.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/ConvertFromStringData.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/UpdateDataStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/ImportLocalizedDataStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/WriteProgressResourceStrings.resx \
../../../jws/pswin/admin/monad/src/commands/utility/resources/AliasCommandStrings.resx \
COMMANDS_UTILITY_RES_SRCS=\
gen/COMMANDS_UTILITY/CsvCommandStrings.resources \
gen/COMMANDS_UTILITY/Debugger.resources \
gen/COMMANDS_UTILITY/EventingStrings.resources \
gen/COMMANDS_UTILITY/NewObjectStrings.resources \
gen/COMMANDS_UTILITY/MeasureObjectStrings.resources \
gen/COMMANDS_UTILITY/MatchStringStrings.resources \
gen/COMMANDS_UTILITY/SelectObjectStrings.resources \
gen/COMMANDS_UTILITY/SortObjectStrings.resources \
gen/COMMANDS_UTILITY/WriteErrorStrings.resources \
gen/COMMANDS_UTILITY/VariableCommandStrings.resources \
gen/COMMANDS_UTILITY/AddTypeStrings.resources \
gen/COMMANDS_UTILITY/GetMember.resources \
gen/COMMANDS_UTILITY/GetRandomCommandStrings.resources \
gen/COMMANDS_UTILITY/UtilityCommonStrings.resources \
gen/COMMANDS_UTILITY/HostStrings.resources \
gen/COMMANDS_UTILITY/AddMember.resources \
gen/COMMANDS_UTILITY/ConvertFromStringData.resources \
gen/COMMANDS_UTILITY/UpdateDataStrings.resources \
gen/COMMANDS_UTILITY/ImportLocalizedDataStrings.resources \
gen/COMMANDS_UTILITY/WriteProgressResourceStrings.resources \
gen/COMMANDS_UTILITY/AliasCommandStrings.resources \
COMMANDS_UTILITY_RES_CS_SRCS=\
gen/COMMANDS_UTILITY/CsvCommandStrings.cs \
gen/COMMANDS_UTILITY/Debugger.cs \
gen/COMMANDS_UTILITY/EventingStrings.cs \
gen/COMMANDS_UTILITY/NewObjectStrings.cs \
gen/COMMANDS_UTILITY/MeasureObjectStrings.cs \
gen/COMMANDS_UTILITY/MatchStringStrings.cs \
gen/COMMANDS_UTILITY/SelectObjectStrings.cs \
gen/COMMANDS_UTILITY/SortObjectStrings.cs \
gen/COMMANDS_UTILITY/WriteErrorStrings.cs \
gen/COMMANDS_UTILITY/VariableCommandStrings.cs \
gen/COMMANDS_UTILITY/AddTypeStrings.cs \
gen/COMMANDS_UTILITY/GetMember.cs \
gen/COMMANDS_UTILITY/GetRandomCommandStrings.cs \
gen/COMMANDS_UTILITY/UtilityCommonStrings.cs \
gen/COMMANDS_UTILITY/HostStrings.cs \
gen/COMMANDS_UTILITY/AddMember.cs \
gen/COMMANDS_UTILITY/ConvertFromStringData.cs \
gen/COMMANDS_UTILITY/UpdateDataStrings.cs \
gen/COMMANDS_UTILITY/ImportLocalizedDataStrings.cs \
gen/COMMANDS_UTILITY/WriteProgressResourceStrings.cs \
gen/COMMANDS_UTILITY/AliasCommandStrings.cs \
COMMANDS_UTILITY_RES_REF=\
-resource:gen/COMMANDS_UTILITY/CsvCommandStrings.resources \
-resource:gen/COMMANDS_UTILITY/Debugger.resources \
-resource:gen/COMMANDS_UTILITY/EventingStrings.resources \
-resource:gen/COMMANDS_UTILITY/NewObjectStrings.resources \
-resource:gen/COMMANDS_UTILITY/MeasureObjectStrings.resources \
-resource:gen/COMMANDS_UTILITY/MatchStringStrings.resources \
-resource:gen/COMMANDS_UTILITY/SelectObjectStrings.resources \
-resource:gen/COMMANDS_UTILITY/SortObjectStrings.resources \
-resource:gen/COMMANDS_UTILITY/WriteErrorStrings.resources \
-resource:gen/COMMANDS_UTILITY/VariableCommandStrings.resources \
-resource:gen/COMMANDS_UTILITY/AddTypeStrings.resources \
-resource:gen/COMMANDS_UTILITY/GetMember.resources \
-resource:gen/COMMANDS_UTILITY/GetRandomCommandStrings.resources \
-resource:gen/COMMANDS_UTILITY/UtilityCommonStrings.resources \
-resource:gen/COMMANDS_UTILITY/HostStrings.resources \
-resource:gen/COMMANDS_UTILITY/AddMember.resources \
-resource:gen/COMMANDS_UTILITY/ConvertFromStringData.resources \
-resource:gen/COMMANDS_UTILITY/UpdateDataStrings.resources \
-resource:gen/COMMANDS_UTILITY/ImportLocalizedDataStrings.resources \
-resource:gen/COMMANDS_UTILITY/WriteProgressResourceStrings.resources \
-resource:gen/COMMANDS_UTILITY/AliasCommandStrings.resources \
COMMANDS_UTILITY_make_rule_RES_SRCS: $(COMMANDS_UTILITY_RES_SRCS)
COMMANDS_UTILITY_make_rule_RES_CS_SRCS: $(COMMANDS_UTILITY_RES_CS_SRCS)
COMMANDS_UTILITY_TARGET=Microsoft.PowerShell.Commands.Utility

View file

@ -0,0 +1,295 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CmdletizationResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CmdletizationResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CmdletizationResources", typeof(CmdletizationResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The cmdlet does not fully support the Inquire action for debug messages. Cmdlet operation will continue during the prompt. Select a different action preference via -Debug switch or $DebugPreference variable, and try again..
/// </summary>
internal static string CimCmdletAdapter_DebugInquire {
get {
return ResourceManager.GetString("CimCmdletAdapter_DebugInquire", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}: A CimSession to the CIM server uses the DCOM protocol, which does not support the {1} switch..
/// </summary>
internal static string CimCmdletAdapter_RemoteDcomDoesntSupportExtendedSemantics {
get {
return ResourceManager.GetString("CimCmdletAdapter_RemoteDcomDoesntSupportExtendedSemantics", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The cmdlet does not fully support the Inquire action for warnings. Cmdlet operation will continue during the prompt. Select a different action preference via -WarningAction parameter or $WarningPreference variable, and try again..
/// </summary>
internal static string CimCmdletAdapter_WarningInquire {
get {
return ResourceManager.GetString("CimCmdletAdapter_WarningInquire", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The cmdlet does not fully support the Stop action for warnings. Cmdlet operation will be stopped with a delay. Select a different action preference via -WarningAction parameter or $WarningPreference variable, and try again..
/// </summary>
internal static string CimCmdletAdapter_WarningStop {
get {
return ResourceManager.GetString("CimCmdletAdapter_WarningStop", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CIM intrinsic type.
/// </summary>
internal static string CimConversion_CimIntrinsicValue {
get {
return ResourceManager.GetString("CimConversion_CimIntrinsicValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WQL literal.
/// </summary>
internal static string CimConversion_WqlQuery {
get {
return ResourceManager.GetString("CimConversion_WqlQuery", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CIM query for enumerating instances of the {0} class on the {1} CIM server, that are associated with the following instance: {2}.
/// </summary>
internal static string CimJob_AssociationDescription {
get {
return ResourceManager.GetString("CimJob_AssociationDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot connect to CIM server. {0}.
/// </summary>
internal static string CimJob_BrokenSession {
get {
return ResourceManager.GetString("CimJob_BrokenSession", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}: {1}.
/// </summary>
internal static string CimJob_ComputerNameConcatenationTemplate {
get {
return ResourceManager.GetString("CimJob_ComputerNameConcatenationTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The CIM method returned the following error code: {0}.
/// </summary>
internal static string CimJob_ErrorCodeFromMethod {
get {
return ResourceManager.GetString("CimJob_ErrorCodeFromMethod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to run {1}. {0}.
/// </summary>
internal static string CimJob_GenericCimFailure {
get {
return ResourceManager.GetString("CimJob_GenericCimFailure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the {0} class on the {1} CIM server. Verify the value of the ClassName xml attribute in Cmdlet Definition XML and retry. Valid class name example: ROOT\cimv2\Win32_Process..
/// </summary>
internal static string CimJob_InvalidClassName {
get {
return ResourceManager.GetString("CimJob_InvalidClassName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the {2} output parameter of the {1} method of the {0} CIM object. Verify the value of the ParameterName attribute in Cmdlet Definition XML and retry..
/// </summary>
internal static string CimJob_InvalidOutputParameterName {
get {
return ResourceManager.GetString("CimJob_InvalidOutputParameterName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CIM method {1} on the {0} CIM object.
/// </summary>
internal static string CimJob_MethodDescription {
get {
return ResourceManager.GetString("CimJob_MethodDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Type of {0} property ({1}) doesn&apos;t match the CIM type ({2}) associated with the type declared in Cmdlet Definition XML..
/// </summary>
internal static string CimJob_MismatchedTypeOfPropertyReturnedByQuery {
get {
return ResourceManager.GetString("CimJob_MismatchedTypeOfPropertyReturnedByQuery", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No matching {1} objects found by {0}. Verify query parameters and retry..
/// </summary>
internal static string CimJob_NotFound_ComplexCase {
get {
return ResourceManager.GetString("CimJob_NotFound_ComplexCase", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No {2} objects found with property &apos;{0}&apos; equal to &apos;{1}&apos;. Verify the value of the property and retry..
/// </summary>
internal static string CimJob_NotFound_SimpleGranularCase_Equality {
get {
return ResourceManager.GetString("CimJob_NotFound_SimpleGranularCase_Equality", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No {2} objects found with property &apos;{0}&apos; matching &apos;{1}&apos;. Verify the value of the property and retry..
/// </summary>
internal static string CimJob_NotFound_SimpleGranularCase_Wildcard {
get {
return ResourceManager.GetString("CimJob_NotFound_SimpleGranularCase_Wildcard", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CIM query for enumerating associated instance of the {0} class on the {1} CIM server.
/// </summary>
internal static string CimJob_SafeAssociationDescription {
get {
return ResourceManager.GetString("CimJob_SafeAssociationDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {2} CIM method exposed by the {0} class on the {1} CIM server.
/// </summary>
internal static string CimJob_SafeMethodDescription {
get {
return ResourceManager.GetString("CimJob_SafeMethodDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CIM query for instances of the {0} class on the {1} CIM server: {2}.
/// </summary>
internal static string CimJob_SafeQueryDescription {
get {
return ResourceManager.GetString("CimJob_SafeQueryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} command cannot complete, because the {1} server is currently busy. The command will be automatically resumed in {2:f2} seconds..
/// </summary>
internal static string CimJob_SleepAndRetryVerboseMessage {
get {
return ResourceManager.GetString("CimJob_SleepAndRetryVerboseMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Running the following operation: {0}..
/// </summary>
internal static string CimJob_VerboseExecutionMessage {
get {
return ResourceManager.GetString("CimJob_VerboseExecutionMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CIM cmdlets do not support the {0} parameter together with the AsJob parameter. Remove one of these parameters and retry..
/// </summary>
internal static string SessionBasedWrapper_ShouldProcessVsJobConflict {
get {
return ResourceManager.GetString("SessionBasedWrapper_ShouldProcessVsJobConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
///&lt;!-- ##################################################################
///Copyright (c) Microsoft Corporation. All rights reserved.
///################################################################### --&gt;
///&lt;!DOCTYPE schema [
/// &lt;!ENTITY csharpIdentifierLetterCharacterRegex &quot;\p{Lu}\p{Ll}\p{Lt}\p{Lm}\p{Lo}\p{Nl}&quot;&gt;
/// &lt;!ENTITY csharpIdentifierFirstCharacterRegex &quot;&amp;csharpIdentifierLetterCharacterRegex;_&quot;&gt;
/// &lt;!ENTITY csharpIdentifierOtherCharacterRegex &quot;&amp;csharpIdentifierL [rest of string was truncated]&quot;;.
/// </summary>
internal static string Xml_cmdletsOverObjectsXsd {
get {
return ResourceManager.GetString("Xml_cmdletsOverObjectsXsd", resourceCulture);
}
}
}

View file

@ -0,0 +1,966 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ComputerResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ComputerResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ComputerResources", typeof(ComputerResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Join in domain &apos;{0}&apos;.
/// </summary>
internal static string AddComputerActionDomain {
get {
return ResourceManager.GetString("AddComputerActionDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Join in workgroup &apos;{0}&apos;.
/// </summary>
internal static string AddComputerActionWorkgroup {
get {
return ResourceManager.GetString("AddComputerActionWorkgroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add computer &apos;{0}&apos; to domain &apos;{1}&apos; because it is already in that domain..
/// </summary>
internal static string AddComputerToSameDomain {
get {
return ResourceManager.GetString("AddComputerToSameDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add computer &apos;{0}&apos; to workgroup &apos;{1}&apos; because it is already in that workgroup..
/// </summary>
internal static string AddComputerToSameWorkgroup {
get {
return ResourceManager.GetString("AddComputerToSameWorkgroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A new system restore point cannot be created because one has already been created within the past {0} minutes. The frequency of restore point creation can be changed by creating the DWORD value &apos;SystemRestorePointCreationFrequency&apos; under the registry key &apos;HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore&apos;. The value of this registry key indicates the necessary time interval (in minutes) between two restore point creation. The default value is 1440 minutes (24 hours)..
/// </summary>
internal static string CannotCreateRestorePointWarning {
get {
return ResourceManager.GetString("CannotCreateRestorePointWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the computer account for the local computer in the domain {0}..
/// </summary>
internal static string CannotFindMachineAccountFromDomain {
get {
return ResourceManager.GetString("CannotFindMachineAccountFromDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the computer account for the local computer from the domain controller {0}..
/// </summary>
internal static string CannotFindMachineAccountFromServer {
get {
return ResourceManager.GetString("CannotFindMachineAccountFromServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Win32_OperatingSystem WMI object cannot be retrieved..
/// </summary>
internal static string CannotGetOperatingSystemObject {
get {
return ResourceManager.GetString("CannotGetOperatingSystemObject", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot rename multiple computers. The NewName parameter is valid only if a single computer is specified..
/// </summary>
internal static string CannotRenameMultipleComputers {
get {
return ResourceManager.GetString("CannotRenameMultipleComputers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer name {0} cannot be resolved with the exception: {1}..
/// </summary>
internal static string CannotResolveComputerName {
get {
return ResourceManager.GetString("CannotResolveComputerName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified server name {0} cannot be resolved..
/// </summary>
internal static string CannotResolveServerName {
get {
return ResourceManager.GetString("CannotResolveServerName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot wait for the local computer to restart. The local computer is ignored when the Wait parameter is specified..
/// </summary>
internal static string CannotWaitLocalComputer {
get {
return ResourceManager.GetString("CannotWaitLocalComputer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value specified for the NewComputerName parameter is the same as the value of the ComputerName parameter. Provide a different value for the NewComputerName parameter..
/// </summary>
internal static string ComputerNamesAreEqual {
get {
return ResourceManager.GetString("ComputerNamesAreEqual", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot remove computer &apos;{0}&apos; because it is not in a domain..
/// </summary>
internal static string ComputerNotInDomain {
get {
return ResourceManager.GetString("ComputerNotInDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} ({1}).
/// </summary>
internal static string DoubleComputerName {
get {
return ResourceManager.GetString("DoubleComputerName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot establish the WMI connection to the computer &apos;{0}&apos; with the following error message: {1}..
/// </summary>
internal static string FailToConnectToComputer {
get {
return ResourceManager.GetString("FailToConnectToComputer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot get domain information about the local computer because of the following exception: {0}..
/// </summary>
internal static string FailToGetDomainInformation {
get {
return ResourceManager.GetString("FailToGetDomainInformation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; failed to join domain &apos;{1}&apos; from its current workgroup &apos;{2}&apos; with following error message: {3}..
/// </summary>
internal static string FailToJoinDomainFromWorkgroup {
get {
return ResourceManager.GetString("FailToJoinDomainFromWorkgroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; was successfully unjoined from domain &apos;{1}&apos;, but failed to join the new domain &apos;{2}&apos; with the following error message: {3}..
/// </summary>
internal static string FailToJoinNewDomainAfterUnjoinOldDomain {
get {
return ResourceManager.GetString("FailToJoinNewDomainAfterUnjoinOldDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to join computer &apos;{0}&apos; to workgroup &apos;{1}&apos; with the following error message: {2}.
/// </summary>
internal static string FailToJoinWorkGroup {
get {
return ResourceManager.GetString("FailToJoinWorkGroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fail to rename computer &apos;{0}&apos; to &apos;{1}&apos; due to the following exception: {2}..
/// </summary>
internal static string FailToRename {
get {
return ResourceManager.GetString("FailToRename", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; was successfully joined to the new domain &apos;{1}&apos;, but renaming it to &apos;{2}&apos; failed with the following error message: {3}..
/// </summary>
internal static string FailToRenameAfterJoinDomain {
get {
return ResourceManager.GetString("FailToRenameAfterJoinDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; successfully joined the workgroup &apos;{1}&apos;, but could not be renamed to &apos;{2}&apos; with the following error message: {3}..
/// </summary>
internal static string FailToRenameAfterJoinWorkgroup {
get {
return ResourceManager.GetString("FailToRenameAfterJoinWorkgroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot reset the secure channel password for the computer account in the domain. Operation failed with the following exception: {0}..
/// </summary>
internal static string FailToResetPasswordOnDomain {
get {
return ResourceManager.GetString("FailToResetPasswordOnDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Resetting the secure channel password for the local computer failed with the following error message: {0}..
/// </summary>
internal static string FailToResetPasswordOnLocalMachine {
get {
return ResourceManager.GetString("FailToResetPasswordOnLocalMachine", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot validate the time interval for restore point creation. It failed to retrieve the last restore point with the following error message: {0}..
/// </summary>
internal static string FailToRetrieveLastRestorePoint {
get {
return ResourceManager.GetString("FailToRetrieveLastRestorePoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; was successfully unjoined from the domain &apos;{1}&apos;, but it failed to join the workgroup &apos;{2}&apos; with the following error message: {3}..
/// </summary>
internal static string FailToSwitchFromDomainToWorkgroup {
get {
return ResourceManager.GetString("FailToSwitchFromDomainToWorkgroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot verify the secure channel for the local computer. Operation failed with the following exception: {0}..
/// </summary>
internal static string FailToTestSecureChannel {
get {
return ResourceManager.GetString("FailToTestSecureChannel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to unjoin computer &apos;{0}&apos; from domain &apos;{1}&apos; with the following error message: {2}..
/// </summary>
internal static string FailToUnjoinDomain {
get {
return ResourceManager.GetString("FailToUnjoinDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The number of new names is not equal to the number of target computers..
/// </summary>
internal static string IncorrectNewNameNumber {
get {
return ResourceManager.GetString("IncorrectNewNameNumber", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following computer name is not valid: {0}. Make sure that the computer name is not longer than 255 characters, that it does not contain two or more consecutive dots, that it does not begin with a dot, that it does not contain only numeric characters, and that it does not contain any of the following characters:
///{{|}}~[\]^:;&lt;=&gt;?@!&quot;#$%^`()+/,.
/// </summary>
internal static string InvalidComputerNameFormat {
get {
return ResourceManager.GetString("InvalidComputerNameFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The domain in computer name &apos;{0}&apos; is not valid. Make sure that the domain exists and that the name is a valid domain name..
/// </summary>
internal static string InvalidDomainNameFormat {
get {
return ResourceManager.GetString("InvalidDomainNameFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot turn on the restore computer infrastructure on the specified computer because the supplied drive is not valid. Enter a valid drive in the Drive parameter, and then try again..
/// </summary>
internal static string InvalidDrive {
get {
return ResourceManager.GetString("InvalidDrive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The flag &apos;{0}&apos; is valid only if flag &apos;{1}&apos; is specified..
/// </summary>
internal static string InvalidJoinOptions {
get {
return ResourceManager.GetString("InvalidJoinOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Skip computer &apos;{0}&apos; with new name &apos;{1}&apos; because the new name is not valid. The new computer name entered is not properly formatted. Standard names may contain letters (a-z, A-Z), numbers (0-9), and hyphens (-), but no spaces or periods (.). The name may not consist entirely of digits, and may not be longer than 63 characters..
/// </summary>
internal static string InvalidNewName {
get {
return ResourceManager.GetString("InvalidNewName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DcomAuthentication is not supported. Please use WsmanAuthentication instead..
/// </summary>
internal static string InvalidParameterDCOMNotSupported {
get {
return ResourceManager.GetString("InvalidParameterDCOMNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} parameter is not supported for CoreCLR..
/// </summary>
internal static string InvalidParameterForCoreClr {
get {
return ResourceManager.GetString("InvalidParameterForCoreClr", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication should not be specified when the DCOM protocol is in use. {0}.
/// </summary>
internal static string InvalidParameterForDCOM {
get {
return ResourceManager.GetString("InvalidParameterForDCOM", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameters DcomAuthentication and Impersonation should not be specified when the WSMan protocol is in use. {0}.
/// </summary>
internal static string InvalidParameterForWSMan {
get {
return ResourceManager.GetString("InvalidParameterForWSMan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The AsJob Parameter Set is not supported..
/// </summary>
internal static string InvalidParameterSetAsJob {
get {
return ResourceManager.GetString("InvalidParameterSetAsJob", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot restore the computer because &quot;{0}&quot; has not been set as valid restore point. Enter a valid restore point in the RestorePoint parameter, and then try again..
/// </summary>
internal static string InvalidRestorePoint {
get {
return ResourceManager.GetString("InvalidRestorePoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Local shutdown access rights.
/// </summary>
internal static string LocalShutdownPrivilege {
get {
return ResourceManager.GetString("LocalShutdownPrivilege", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Administrator rights are required to reset the secure channel password on the local computer. Access is denied..
/// </summary>
internal static string NeedAdminPrivilegeToResetPassword {
get {
return ResourceManager.GetString("NeedAdminPrivilegeToResetPassword", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot remove computer(s) from the domain because the local network is down..
/// </summary>
internal static string NetworkDown {
get {
return ResourceManager.GetString("NetworkDown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Try below options and Run the command again.
///1. Verify that the target computer(&apos;{0}&apos;) is running.
///2. Specify full computer name of the target computer(&apos;{0}&apos;)..
/// </summary>
internal static string NetworkPathNotFound {
get {
return ResourceManager.GetString("NetworkPathNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Skip computer &apos;{0}&apos; with new name &apos;{1}&apos; because the new name is the same as the current name..
/// </summary>
internal static string NewNameIsOldName {
get {
return ResourceManager.GetString("NewNameIsOldName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Testing connection to computer &apos;{0}&apos; failed: {1}.
/// </summary>
internal static string NoPingResult {
get {
return ResourceManager.GetString("NoPingResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot locate the &quot;{0}&quot; restore point. Verify the &quot;{0}&quot; sequence number, and then try the command again..
/// </summary>
internal static string NoResorePoint {
get {
return ResourceManager.GetString("NoResorePoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The combined service types are not supported for now..
/// </summary>
internal static string NoSupportForCombinedServiceType {
get {
return ResourceManager.GetString("NoSupportForCombinedServiceType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Include System Drive in the list of Drives..
/// </summary>
internal static string NoSystemDrive {
get {
return ResourceManager.GetString("NoSystemDrive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot disable System Restore on the {0} drive. You may not have sufficient permissions to perform this operation..
/// </summary>
internal static string NotDisabled {
get {
return ResourceManager.GetString("NotDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not enable drive {0}..
/// </summary>
internal static string NotEnabled {
get {
return ResourceManager.GetString("NotEnabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This functionality is not supported on this operating system..
/// </summary>
internal static string NotSupported {
get {
return ResourceManager.GetString("NotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot turn off the restore computer infrastructure because the supplied drive is not valid. Enter a valid drive in the Drive parameter, and then try again..
/// </summary>
internal static string NotValidDrive {
get {
return ResourceManager.GetString("NotValidDrive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run on target computer(&apos;{1}&apos;) due to following error: {0}.{2}.
/// </summary>
internal static string OperationFailed {
get {
return ResourceManager.GetString("OperationFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication should not be specified with DcomAuthentication and Impersonation at the same time. {0}.
/// </summary>
internal static string ParameterConfliction {
get {
return ResourceManager.GetString("ParameterConfliction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication is valid only if the WSMan protocol is used. Parameters DcomAuthentication (Authentication) and Impersonation are valid only if the DCOM protocol is used..
/// </summary>
internal static string ParameterUsage {
get {
return ResourceManager.GetString("ParameterUsage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to restart the computer {0}. Access rights {1} cannot be enabled for the calling process..
/// </summary>
internal static string PrivilegeNotEnabled {
get {
return ResourceManager.GetString("PrivilegeNotEnabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating a system restore point ....
/// </summary>
internal static string ProgressActivity {
get {
return ResourceManager.GetString("ProgressActivity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Completed..
/// </summary>
internal static string ProgressStatusCompleted {
get {
return ResourceManager.GetString("ProgressStatusCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating a system restore point... {0}% Completed..
/// </summary>
internal static string ProgressStatusCreatingRestorePoint {
get {
return ResourceManager.GetString("ProgressStatusCreatingRestorePoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remote shutdown access rights.
/// </summary>
internal static string RemoteShutdownPrivilege {
get {
return ResourceManager.GetString("RemoteShutdownPrivilege", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to After you leave the domain, you will need to know the password of the local Administrator account to log onto this computer. Do you wish to continue?.
/// </summary>
internal static string RemoveComputerConfirm {
get {
return ResourceManager.GetString("RemoveComputerConfirm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication cannot be specified with the DCOM protocol. Parameter WSManAuthentication is valid only when the WSMan protocol is used..
/// </summary>
internal static string RenameCommandWsmanAuthParamConflict {
get {
return ResourceManager.GetString("RenameCommandWsmanAuthParamConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The attempt to repair the secure channel between the local computer and the domain {0} has failed..
/// </summary>
internal static string RepairSecureChannelFail {
get {
return ResourceManager.GetString("RepairSecureChannelFail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The secure channel between the local computer and the domain {0} was successfully repaired..
/// </summary>
internal static string RepairSecureChannelSucceed {
get {
return ResourceManager.GetString("RepairSecureChannelSucceed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &quot;The password of the secure channel between &apos;{0}&apos; and &apos;{1}&apos; has been reset.&quot;.
/// </summary>
internal static string ResetComputerMachinePassword {
get {
return ResourceManager.GetString("ResetComputerMachinePassword", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot reset the secure channel password for the account of the local computer. The local computer is not currently part of a domain..
/// </summary>
internal static string ResetComputerNotInDomain {
get {
return ResourceManager.GetString("ResetComputerNotInDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restart is complete.
/// </summary>
internal static string RestartComplete {
get {
return ResourceManager.GetString("RestartComplete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable the {0} and restart the computer..
/// </summary>
internal static string RestartComputerAction {
get {
return ResourceManager.GetString("RestartComputerAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to restart the computer {0} with the following error message: {1}..
/// </summary>
internal static string RestartcomputerFailed {
get {
return ResourceManager.GetString("RestartcomputerFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameters Timeout, For, and Delay are valid only when the parameter Wait is specified..
/// </summary>
internal static string RestartComputerInvalidParameter {
get {
return ResourceManager.GetString("RestartComputerInvalidParameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The computer {0} is skipped. Fail to retrieve its LastBootUpTime via the WMI service with the following error message: {1}..
/// </summary>
internal static string RestartComputerSkipped {
get {
return ResourceManager.GetString("RestartComputerSkipped", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restarting computers....
/// </summary>
internal static string RestartMultipleComputersActivity {
get {
return ResourceManager.GetString("RestartMultipleComputersActivity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The changes will take effect after you restart the computer {1}..
/// </summary>
internal static string RestartNeeded {
get {
return ResourceManager.GetString("RestartNeeded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restarting computer {0}.
/// </summary>
internal static string RestartSingleComputerActivity {
get {
return ResourceManager.GetString("RestartSingleComputerActivity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The last attempt to restore the computer failed..
/// </summary>
internal static string RestoreFailed {
get {
return ResourceManager.GetString("RestoreFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The last attempt to restore the computer was interrupted..
/// </summary>
internal static string RestoreInterrupted {
get {
return ResourceManager.GetString("RestoreInterrupted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The system restore infrastructure cannot create a restore point..
/// </summary>
internal static string RestorePointNotCreated {
get {
return ResourceManager.GetString("RestorePointNotCreated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The computer has been restored to the specified restore point..
/// </summary>
internal static string RestoreSuceess {
get {
return ResourceManager.GetString("RestoreSuceess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The secure channel between the local computer and the domain {0} is in good condition..
/// </summary>
internal static string SecureChannelAlive {
get {
return ResourceManager.GetString("SecureChannelAlive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The secure channel between the local computer and the domain {0} is broken..
/// </summary>
internal static string SecureChannelBroken {
get {
return ResourceManager.GetString("SecureChannelBroken", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to SystemRestore service is disabled..
/// </summary>
internal static string ServiceDisabled {
get {
return ResourceManager.GetString("ServiceDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameters DcomAuthentication and Impersonation cannot be specified with the WSMan protocol. {0}.
/// </summary>
internal static string StopCommandAuthProtcolConflict {
get {
return ResourceManager.GetString("StopCommandAuthProtcolConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication is valid only when the WSMan protocol is used. Parameters DcomAuthentication and Impersonation are valid only when the DCOM protocol is used..
/// </summary>
internal static string StopCommandParamMessage {
get {
return ResourceManager.GetString("StopCommandParamMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication cannot be specified with DcomAuthentication or Impersonation parameters. {0}.
/// </summary>
internal static string StopCommandParamWSManAuthConflict {
get {
return ResourceManager.GetString("StopCommandParamWSManAuthConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication cannot be specified with the DCOM protocol. {0}.
/// </summary>
internal static string StopCommandWSManAuthProtcolConflict {
get {
return ResourceManager.GetString("StopCommandWSManAuthProtcolConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to stop the computer {0} with the following error message: {1}..
/// </summary>
internal static string StopcomputerFailed {
get {
return ResourceManager.GetString("StopcomputerFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The operation cannot be performed because the system restore APIs are not supported on the Advanced RISC Machine (ARM) platform..
/// </summary>
internal static string SystemRestoreNotSupported {
get {
return ResourceManager.GetString("SystemRestoreNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run due to the following error: the service cannot be started because it is disabled or does not have enabled devices associated with it..
/// </summary>
internal static string SystemRestoreServiceDisabled {
get {
return ResourceManager.GetString("SystemRestoreServiceDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot verify the secure channel password for the local computer. The local computer is not currently part of a domain..
/// </summary>
internal static string TestComputerNotInDomain {
get {
return ResourceManager.GetString("TestComputerNotInDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The computer did not finish restarting within the specified time-out period..
/// </summary>
internal static string TimeoutError {
get {
return ResourceManager.GetString("TimeoutError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The NetBIOS name of the computer is limited to 15 bytes, which is 15 characters in this case. The NetBIOS name will be shortened to &quot;{0}&quot;, which may cause conflicts under NetBIOS name resolution. Do you wish to continue?.
/// </summary>
internal static string TruncateNetBIOSName {
get {
return ResourceManager.GetString("TruncateNetBIOSName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to NetBIOS name will be truncated..
/// </summary>
internal static string TruncateNetBIOSNameCaption {
get {
return ResourceManager.GetString("TruncateNetBIOSNameCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Verifying that the computer has been restarted....
/// </summary>
internal static string VerifyRebootStage {
get {
return ResourceManager.GetString("VerifyRebootStage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Completed: {0}/{1}..
/// </summary>
internal static string WaitForMultipleComputers {
get {
return ResourceManager.GetString("WaitForMultipleComputers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for Windows PowerShell connectivity....
/// </summary>
internal static string WaitForPowerShell {
get {
return ResourceManager.GetString("WaitForPowerShell", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for the restart to begin....
/// </summary>
internal static string WaitForRestartToBegin {
get {
return ResourceManager.GetString("WaitForRestartToBegin", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for WinRM connectivity....
/// </summary>
internal static string WaitForWinRM {
get {
return ResourceManager.GetString("WaitForWinRM", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for WMI connectivity....
/// </summary>
internal static string WaitForWMI {
get {
return ResourceManager.GetString("WaitForWMI", resourceCulture);
}
}
}

View file

@ -0,0 +1,279 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class NavigationResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal NavigationResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NavigationResources", typeof(NavigationResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Add Content.
/// </summary>
internal static string AddContentAction {
get {
return ResourceManager.GetString("AddContentAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path: {0}.
/// </summary>
internal static string AddContentTarget {
get {
return ResourceManager.GetString("AddContentTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Commit.
/// </summary>
internal static string CommitAction {
get {
return ResourceManager.GetString("CommitAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot copy because the specified destination already exists. Do you want to overwrite the existing content?.
/// </summary>
internal static string CopyToExistingPrompt {
get {
return ResourceManager.GetString("CopyToExistingPrompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Begin.
/// </summary>
internal static string CreateAction {
get {
return ResourceManager.GetString("CreateAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified path is a container that has child items. Do you want to delete this container and its child items?.
/// </summary>
internal static string DeleteHasChildrenPrompt {
get {
return ResourceManager.GetString("DeleteHasChildrenPrompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do you want to delete the specified item?.
/// </summary>
internal static string DeletePrompt {
get {
return ResourceManager.GetString("DeletePrompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An object at the specified path {0} does not exist, or has been filtered by the -Include or -Exclude parameter..
/// </summary>
internal static string ItemNotFound {
get {
return ResourceManager.GetString("ItemNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot move item because the item at &apos;{0}&apos; does not exist..
/// </summary>
internal static string MoveItemDoesntExist {
get {
return ResourceManager.GetString("MoveItemDoesntExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot move item because the item at &apos;{0}&apos; is in use..
/// </summary>
internal static string MoveItemInUse {
get {
return ResourceManager.GetString("MoveItemInUse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New drive.
/// </summary>
internal static string NewDriveConfirmAction {
get {
return ResourceManager.GetString("NewDriveConfirmAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0} Provider: {1} Root: {2}.
/// </summary>
internal static string NewDriveConfirmResourceTemplate {
get {
return ResourceManager.GetString("NewDriveConfirmResourceTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot parse path because path &apos;{0}&apos; does not have a qualifier specified..
/// </summary>
internal static string ParsePathFormatError {
get {
return ResourceManager.GetString("ParsePathFormatError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove Drive.
/// </summary>
internal static string RemoveDriveConfirmAction {
get {
return ResourceManager.GetString("RemoveDriveConfirmAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0} Provider: {1} Root: {2}.
/// </summary>
internal static string RemoveDriveConfirmResourceTemplate {
get {
return ResourceManager.GetString("RemoveDriveConfirmResourceTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot remove drive &apos;{0}&apos; because it is in use..
/// </summary>
internal static string RemoveDriveInUse {
get {
return ResourceManager.GetString("RemoveDriveInUse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot remove the item at &apos;{0}&apos; because it is in use..
/// </summary>
internal static string RemoveItemInUse {
get {
return ResourceManager.GetString("RemoveItemInUse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The item at {0} has children and the Recurse parameter was not specified. If you continue, all children will be removed with the item. Are you sure you want to continue?.
/// </summary>
internal static string RemoveItemWithChildren {
get {
return ResourceManager.GetString("RemoveItemWithChildren", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot rename the item at &apos;{0}&apos; because it is in use..
/// </summary>
internal static string RenamedItemInUse {
get {
return ResourceManager.GetString("RenamedItemInUse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot rename because item at &apos;{0}&apos; does not exist..
/// </summary>
internal static string RenameItemDoesntExist {
get {
return ResourceManager.GetString("RenameItemDoesntExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rollback.
/// </summary>
internal static string RollbackAction {
get {
return ResourceManager.GetString("RollbackAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set Content.
/// </summary>
internal static string SetContentAction {
get {
return ResourceManager.GetString("SetContentAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path: {0}.
/// </summary>
internal static string SetContentTarget {
get {
return ResourceManager.GetString("SetContentTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Current transaction.
/// </summary>
internal static string TransactionResource {
get {
return ResourceManager.GetString("TransactionResource", resourceCulture);
}
}
}

View file

@ -0,0 +1,378 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ProcessResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ProcessResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ProcessResources", typeof(ProcessResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The user does not have access to the requested information..
/// </summary>
internal static string AttachDebuggerReturnCode2 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified parameter is not valid..
/// </summary>
internal static string AttachDebuggerReturnCode21 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode21", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The user does not have sufficient privilege..
/// </summary>
internal static string AttachDebuggerReturnCode3 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown failure..
/// </summary>
internal static string AttachDebuggerReturnCode8 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode8", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The path specified does not exist..
/// </summary>
internal static string AttachDebuggerReturnCode9 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode9", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run completely because the system cannot find all the information required..
/// </summary>
internal static string CannotStarttheProcess {
get {
return ResourceManager.GetString("CannotStarttheProcess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to perform the Stop-Process operation on the following item: {0}({1})?.
/// </summary>
internal static string ConfirmStopProcess {
get {
return ResourceManager.GetString("ConfirmStopProcess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameters &quot;{0}&quot; and &quot;{1}&quot; cannot be specified at the same time..
/// </summary>
internal static string ContradictParametersSpecified {
get {
return ResourceManager.GetString("ContradictParametersSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot debug process &quot;{0} ({1})&quot; because of the following error: {2}.
/// </summary>
internal static string CouldNotDebugProcess {
get {
return ResourceManager.GetString("CouldNotDebugProcess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot enumerate the file version information of the &quot;{0}&quot; process..
/// </summary>
internal static string CouldnotEnumerateFileVer {
get {
return ResourceManager.GetString("CouldnotEnumerateFileVer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot enumerate the modules and the file version information of the &quot;{0}&quot; process..
/// </summary>
internal static string CouldnotEnumerateModuleFileVer {
get {
return ResourceManager.GetString("CouldnotEnumerateModuleFileVer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot enumerate the modules of the &quot;{0}&quot; process..
/// </summary>
internal static string CouldnotEnumerateModules {
get {
return ResourceManager.GetString("CouldnotEnumerateModules", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot stop process &quot;{0} ({1})&quot; because of the following error: {2}.
/// </summary>
internal static string CouldNotStopProcess {
get {
return ResourceManager.GetString("CouldNotStopProcess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot attach the debugger to the process due to {0} because no default debugger is available..
/// </summary>
internal static string DebuggerError {
get {
return ResourceManager.GetString("DebuggerError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because &quot;{0}&quot; and &quot;{1}&quot; are same. Give different inputs and Run your command again..
/// </summary>
internal static string DuplicateEntry {
get {
return ResourceManager.GetString("DuplicateEntry", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The &apos;IncludeUserName&apos; parameter requires elevated user rights. Try running the command again in a session that has been opened with elevated user rights (that is, Run as Administrator)..
/// </summary>
internal static string IncludeUserNameRequiresElevation {
get {
return ResourceManager.GetString("IncludeUserNameRequiresElevation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because the input &quot;{0}&quot; is not a valid Application. Give a valid application and run your command again..
/// </summary>
internal static string InvalidApplication {
get {
return ResourceManager.GetString("InvalidApplication", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because either the parameter &quot;{0}&quot; has a value that is not valid or cannot be used with this command. Give a valid input and Run your command again..
/// </summary>
internal static string InvalidInput {
get {
return ResourceManager.GetString("InvalidInput", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run due to the error: {0}..
/// </summary>
internal static string InvalidStartProcess {
get {
return ResourceManager.GetString("InvalidStartProcess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run due to error 1783. The possible cause of this error can be using of a non-existing user &quot;{0}&quot;. Please give a valid user and run your command again..
/// </summary>
internal static string InvalidUserError {
get {
return ResourceManager.GetString("InvalidUserError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error adding &apos;{0}&apos; to the network: {1}.
/// </summary>
internal static string JoinNetworkFailed {
get {
return ResourceManager.GetString("JoinNetworkFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exception getting &quot;Modules&quot; or &quot;FileVersion&quot;: &quot;This feature is not supported for remote computers.&quot;..
/// </summary>
internal static string NoComputerNameWithFileVersion {
get {
return ResourceManager.GetString("NoComputerNameWithFileVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because the debugger cannot be attached to the process &quot;{0} ({1})&quot;. Specify another process and Run your command..
/// </summary>
internal static string NoDebuggerFound {
get {
return ResourceManager.GetString("NoDebuggerFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find a process with the process identifier {1}..
/// </summary>
internal static string NoProcessFoundForGivenId {
get {
return ResourceManager.GetString("NoProcessFoundForGivenId", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find a process with the name &quot;{0}&quot;. Verify the process name and call the cmdlet again..
/// </summary>
internal static string NoProcessFoundForGivenName {
get {
return ResourceManager.GetString("NoProcessFoundForGivenName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameter &apos;{0}&apos; is not supported for the cmdlet &apos;{1}&apos; on this edition of Windows..
/// </summary>
internal static string ParameterNotSupported {
get {
return ResourceManager.GetString("ParameterNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command stopped operation of &quot;{0} ({1})&quot; because of the following error: {2}..
/// </summary>
internal static string Process_is_not_terminated {
get {
return ResourceManager.GetString("Process is not terminated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} ({1}).
/// </summary>
internal static string ProcessNameForConfirmation {
get {
return ResourceManager.GetString("ProcessNameForConfirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command stopped operation because process &quot;{0} ({1})&quot; is not stopped in the specified time-out..
/// </summary>
internal static string ProcessNotTerminated {
get {
return ResourceManager.GetString("ProcessNotTerminated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because Redirection parameters cannot be used with UseShellExecute parameter.
/// </summary>
internal static string RedirectionParams {
get {
return ResourceManager.GetString("RedirectionParams", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error removing &apos;{0}&apos; from the network: {1}.
/// </summary>
internal static string RemoveFailed {
get {
return ResourceManager.GetString("RemoveFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error renaming &apos;{0}&apos;: {1}.
/// </summary>
internal static string RenameFailed {
get {
return ResourceManager.GetString("RenameFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified path is not a valid win32 application. Try again with the UseShellExecute..
/// </summary>
internal static string UseShell {
get {
return ResourceManager.GetString("UseShell", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command stopped operation because it cannot wait on &apos;System Idle&apos; process. Specify another process and Run your command again..
/// </summary>
internal static string WaitOnIdleProcess {
get {
return ResourceManager.GetString("WaitOnIdleProcess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command stopped operation because it cannot wait on itself. Specify another process and Run your command again..
/// </summary>
internal static string WaitOnItself {
get {
return ResourceManager.GetString("WaitOnItself", resourceCulture);
}
}
}

View file

@ -0,0 +1,315 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ServiceResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ServiceResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ServiceResources", typeof(ServiceResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot be used to configure the service &apos;{0}&apos; because access to computer &apos;{1}&apos; is denied. Run Windows PowerShell as admin and run your command again..
/// </summary>
internal static string ComputerAccessDenied {
get {
return ResourceManager.GetString("ComputerAccessDenied", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &apos;Cannot access dependent services of &apos;{1} ({0})&apos;.
/// </summary>
internal static string CouldNotAccessDependentServices {
get {
return ResourceManager.GetString("CouldNotAccessDependentServices", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be created due to the following error: {2}.
/// </summary>
internal static string CouldNotNewService {
get {
return ResourceManager.GetString("CouldNotNewService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; was created, but its description cannot be configured due to the following error: {2}.
/// </summary>
internal static string CouldNotNewServiceDescription {
get {
return ResourceManager.GetString("CouldNotNewServiceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be resumed due to the following error: {2}.
/// </summary>
internal static string CouldNotResumeService {
get {
return ResourceManager.GetString("CouldNotResumeService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be resumed because it is not currently running..
/// </summary>
internal static string CouldNotResumeServiceNotRunning {
get {
return ResourceManager.GetString("CouldNotResumeServiceNotRunning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be resumed because the service does not support being suspended or resumed..
/// </summary>
internal static string CouldNotResumeServiceNotSupported {
get {
return ResourceManager.GetString("CouldNotResumeServiceNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be configured due to the following error: {2}.
/// </summary>
internal static string CouldNotSetService {
get {
return ResourceManager.GetString("CouldNotSetService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; description cannot be configured due to the following error: {2}.
/// </summary>
internal static string CouldNotSetServiceDescription {
get {
return ResourceManager.GetString("CouldNotSetServiceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be started due to the following error: {2}.
/// </summary>
internal static string CouldNotStartService {
get {
return ResourceManager.GetString("CouldNotStartService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be stopped due to the following error: {2}.
/// </summary>
internal static string CouldNotStopService {
get {
return ResourceManager.GetString("CouldNotStopService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be suspended due to the following error: {2}.
/// </summary>
internal static string CouldNotSuspendService {
get {
return ResourceManager.GetString("CouldNotSuspendService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be suspended because it is not currently running..
/// </summary>
internal static string CouldNotSuspendServiceNotRunning {
get {
return ResourceManager.GetString("CouldNotSuspendServiceNotRunning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be suspended because the service does not support being suspended or resumed..
/// </summary>
internal static string CouldNotSuspendServiceNotSupported {
get {
return ResourceManager.GetString("CouldNotSuspendServiceNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find any service with display name &apos;{1}&apos;..
/// </summary>
internal static string NoServiceFoundForGivenDisplayName {
get {
return ResourceManager.GetString("NoServiceFoundForGivenDisplayName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find any service with service name &apos;{0}&apos;..
/// </summary>
internal static string NoServiceFoundForGivenName {
get {
return ResourceManager.GetString("NoServiceFoundForGivenName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; resume failed..
/// </summary>
internal static string ResumeServiceFailed {
get {
return ResourceManager.GetString("ResumeServiceFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service &apos;{1} ({0})&apos; to resume....
/// </summary>
internal static string ResumingService {
get {
return ResourceManager.GetString("ResumingService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot stop service &apos;{1} ({0})&apos; because it has dependent services. It can only be stopped if the Force flag is set..
/// </summary>
internal static string ServiceHasDependentServices {
get {
return ResourceManager.GetString("ServiceHasDependentServices", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot stop service &apos;{1} ({0})&apos; because it has dependent services..
/// </summary>
internal static string ServiceHasDependentServicesNoForce {
get {
return ResourceManager.GetString("ServiceHasDependentServicesNoForce", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot stop service &apos;{1} ({0})&apos; because it is dependent on other services..
/// </summary>
internal static string ServiceIsDependentOnNoForce {
get {
return ResourceManager.GetString("ServiceIsDependentOnNoForce", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} ({1}).
/// </summary>
internal static string ServiceNameForConfirmation {
get {
return ResourceManager.GetString("ServiceNameForConfirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service &apos;{1} ({0})&apos; to start....
/// </summary>
internal static string StartingService {
get {
return ResourceManager.GetString("StartingService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to start service &apos;{1} ({0})&apos;..
/// </summary>
internal static string StartServiceFailed {
get {
return ResourceManager.GetString("StartServiceFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service &apos;{1} ({0})&apos; to stop....
/// </summary>
internal static string StoppingService {
get {
return ResourceManager.GetString("StoppingService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; stop failed..
/// </summary>
internal static string StopServiceFailed {
get {
return ResourceManager.GetString("StopServiceFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service &apos;{1} ({0})&apos; to suspend....
/// </summary>
internal static string SuspendingService {
get {
return ResourceManager.GetString("SuspendingService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; suspend failed..
/// </summary>
internal static string SuspendServiceFailed {
get {
return ResourceManager.GetString("SuspendServiceFailed", resourceCulture);
}
}
}

View file

@ -0,0 +1,72 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class AddAssemblyStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal AddAssemblyStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AddAssemblyStrings", typeof(AddAssemblyStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot load the assembly because path &apos;{0}&apos; referred to a &apos;{1}&apos; provider path. Change the path to a file system path..
/// </summary>
internal static string SupportFileSystemOnly {
get {
return ResourceManager.GetString("SupportFileSystemOnly", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,180 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class AddMember {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal AddMember() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AddMember", typeof(AddMember).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The member referenced by this alias should not be null or empty..
/// </summary>
internal static string AliasReferenceShouldNotBeNullOrEmpty {
get {
return ResourceManager.GetString("AliasReferenceShouldNotBeNullOrEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add a member with type &quot;{0}&quot;. Specify a different type for the MemberTypes parameter..
/// </summary>
internal static string CannotAddMemberType {
get {
return ResourceManager.GetString("CannotAddMemberType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot force the member with name &quot;{0}&quot; and type &quot;{1}&quot; to be added. A member with that name and type already exists, and the existing member is not an instance extension..
/// </summary>
internal static string CannotRemoveTypeDataMember {
get {
return ResourceManager.GetString("CannotRemoveTypeDataMember", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameter NotePropertyName cannot take values that could be converted to the type {0}. To define the name of a member with those values, use Add-Member, and specify the member type..
/// </summary>
internal static string InvalidValueForNotePropertyName {
get {
return ResourceManager.GetString("InvalidValueForNotePropertyName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add a member with the name &quot;{0}&quot; because a member with that name already exists. To overwrite the member anyway, add the Force parameter to your command..
/// </summary>
internal static string MemberAlreadyExists {
get {
return ResourceManager.GetString("MemberAlreadyExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The name for a NoteProperty member should not be null or an empty string..
/// </summary>
internal static string NotePropertyNameShouldNotBeNull {
get {
return ResourceManager.GetString("NotePropertyNameShouldNotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The TypeName parameter should not be null, empty, or contain only white spaces..
/// </summary>
internal static string TypeNameShouldNotBeEmpty {
get {
return ResourceManager.GetString("TypeNameShouldNotBeEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Both Value and SecondValue parameters should not be null for a member of type &quot;{0}&quot;. Specify a non-null value for one of the two parameters..
/// </summary>
internal static string Value1AndValue2AreNotBothNull {
get {
return ResourceManager.GetString("Value1AndValue2AreNotBothNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Value parameter is required for a member of type &quot;{0}&quot;. Specify the Value parameter when adding members of this type..
/// </summary>
internal static string Value1Prompt {
get {
return ResourceManager.GetString("Value1Prompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Value parameter should not be null for a member of type &quot;{0}&quot;. Specify a non-null value for the Value parameter when adding members of this type..
/// </summary>
internal static string Value1ShouldNotBeNull {
get {
return ResourceManager.GetString("Value1ShouldNotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The SecondValue parameter should not be null for a member of type &quot;{0}&quot;. Specify a non-null value for the SecondValue parameter when adding members of this type..
/// </summary>
internal static string Value2ShouldNotBeNull {
get {
return ResourceManager.GetString("Value2ShouldNotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The SecondValue parameter is not necessary for a member of type &quot;{0}&quot;, and should not be specified. Do not specify the SecondValue parameter when you add members of this type..
/// </summary>
internal static string Value2ShouldNotBeSpecified {
get {
return ResourceManager.GetString("Value2ShouldNotBeSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to To add a member, only one member type can be specified. The member types specified are: &quot;{0}&quot;.
/// </summary>
internal static string WrongMemberCount {
get {
return ResourceManager.GetString("WrongMemberCount", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,225 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class AddTypeStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal AddTypeStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AddTypeStrings", typeof(AddTypeStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. The assembly name {0} matches both {1} and {2}..
/// </summary>
internal static string AmbiguousAssemblyName {
get {
return ResourceManager.GetString("AmbiguousAssemblyName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. One or more required assemblies are missing..
/// </summary>
internal static string AssemblyLoadErrors {
get {
return ResourceManager.GetString("AssemblyLoadErrors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. The assembly &apos;{0}&apos; could not be found..
/// </summary>
internal static string AssemblyNotFound {
get {
return ResourceManager.GetString("AssemblyNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. Definition of new types is not supported in this language mode..
/// </summary>
internal static string CannotDefineNewType {
get {
return ResourceManager.GetString("CannotDefineNewType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}({1}) : {2}.
/// </summary>
internal static string CompilationErrorFormat {
get {
return ResourceManager.GetString("CompilationErrorFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. Compilation errors occurred..
/// </summary>
internal static string CompilerErrors {
get {
return ResourceManager.GetString("CompilerErrors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type due to the following exception: {0}. Verify that Microsoft .NET Framework {1} is installed. On x64-based versions of Windows, you must also install the WOW64 feature..
/// </summary>
internal static string CompilerErrorWithCSC {
get {
return ResourceManager.GetString("CompilerErrorWithCSC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. The &quot;{0}&quot; extension is not supported..
/// </summary>
internal static string FileExtensionNotSupported {
get {
return ResourceManager.GetString("FileExtensionNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. The -MemberDefinition parameter is not supported for this language..
/// </summary>
internal static string FromMemberNotSupported {
get {
return ResourceManager.GetString("FromMemberNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. Specify only the Language or CodeDomProvider parameters..
/// </summary>
internal static string LanguageAndProviderSpecified {
get {
return ResourceManager.GetString("LanguageAndProviderSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The generated type defines no public methods or properties..
/// </summary>
internal static string MethodDefinitionNotPublic {
get {
return ResourceManager.GetString("MethodDefinitionNotPublic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. Input files must all have the same file extension..
/// </summary>
internal static string MultipleExtensionsNotSupported {
get {
return ResourceManager.GetString("MultipleExtensionsNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot set output assembly. The path {0} did not resolve to a single file..
/// </summary>
internal static string OutputAssemblyDidNotResolve {
get {
return ResourceManager.GetString("OutputAssemblyDidNotResolve", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. The OutputType parameter requires that the OutputAssembly parameter be specified..
/// </summary>
internal static string OutputTypeRequiresOutputAssembly {
get {
return ResourceManager.GetString("OutputTypeRequiresOutputAssembly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. The &apos;{0}&apos; language requires Microsoft .NET Framework {1}..
/// </summary>
internal static string SpecialNetVersionRequired {
get {
return ResourceManager.GetString("SpecialNetVersionRequired", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. The type name &apos;{0}&apos; already exists..
/// </summary>
internal static string TypeAlreadyExists {
get {
return ResourceManager.GetString("TypeAlreadyExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The generated type is not public..
/// </summary>
internal static string TypeDefinitionNotPublic {
get {
return ResourceManager.GetString("TypeDefinitionNotPublic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add type. The &apos;{0}&apos; parameter and the &apos;{1}&apos; parameter cannot both be specified..
/// </summary>
internal static string WrongCompilerParameterCombination {
get {
return ResourceManager.GetString("WrongCompilerParameterCombination", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,234 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class AliasCommandStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal AliasCommandStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AliasCommandStrings", typeof(AliasCommandStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot open file {0} to export the alias. {1}.
/// </summary>
internal static string ExportAliasFileOpenFailed {
get {
return ResourceManager.GetString("ExportAliasFileOpenFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Date/Time : {0:F}.
/// </summary>
internal static string ExportAliasHeaderDate {
get {
return ResourceManager.GetString("ExportAliasHeaderDate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer : {0}.
/// </summary>
internal static string ExportAliasHeaderMachine {
get {
return ResourceManager.GetString("ExportAliasHeaderMachine", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Alias File.
/// </summary>
internal static string ExportAliasHeaderTitle {
get {
return ResourceManager.GetString("ExportAliasHeaderTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exported by : {0}.
/// </summary>
internal static string ExportAliasHeaderUser {
get {
return ResourceManager.GetString("ExportAliasHeaderUser", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot export the aliases because path &apos;{0}&apos; contains wildcard characters that resolved to multiple paths. Aliases can be exported to only one file. Change the value of the Path parameter to a path that resolves to a single file..
/// </summary>
internal static string ExportAliasPathResolvedToMultiple {
get {
return ResourceManager.GetString("ExportAliasPathResolvedToMultiple", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot export the aliases because path &apos;{0}&apos; referred to a &apos;{1}&apos; provider path. Change the Path parameter to a file system path..
/// </summary>
internal static string ExportAliasToFileSystemOnly {
get {
return ResourceManager.GetString("ExportAliasToFileSystemOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import Alias.
/// </summary>
internal static string ImportAliasAction {
get {
return ResourceManager.GetString("ImportAliasAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot import an alias. Line number {1} in the file &apos;{0}&apos; is not a properly-formatted, comma-separated values (CSV) line for aliases. Change the line to contain four values separated by commas. If the value text itself contains a comma, then the value must be contained in quotation marks..
/// </summary>
internal static string ImportAliasFileInvalidFormat {
get {
return ResourceManager.GetString("ImportAliasFileInvalidFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot open file {0} to import the alias. {1}.
/// </summary>
internal static string ImportAliasFileOpenFailed {
get {
return ResourceManager.GetString("ImportAliasFileOpenFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot import the alias because the specified path &apos;{0}&apos; referred to a &apos;{1}&apos; provider path. Change the value of the Path parameter to a file system path..
/// </summary>
internal static string ImportAliasFromFileSystemOnly {
get {
return ResourceManager.GetString("ImportAliasFromFileSystemOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot import the alias because line number {1} in the file &apos;{0}&apos; contains an option that is not recognized for aliases. Change the file to contain valid options..
/// </summary>
internal static string ImportAliasOptionsError {
get {
return ResourceManager.GetString("ImportAliasOptionsError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot import alias because path &apos;{0}&apos; contains wildcard characters that resolve to multiple paths. Aliases can be imported from only one file. Change the value of the Path parameter to a path that resolves to a single file..
/// </summary>
internal static string ImportAliasPathResolvedToMultiple {
get {
return ResourceManager.GetString("ImportAliasPathResolvedToMultiple", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0} Value: {1}.
/// </summary>
internal static string ImportAliasTarget {
get {
return ResourceManager.GetString("ImportAliasTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New Alias.
/// </summary>
internal static string NewAliasAction {
get {
return ResourceManager.GetString("NewAliasAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0} Value: {1}.
/// </summary>
internal static string NewAliasTarget {
get {
return ResourceManager.GetString("NewAliasTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot find a matching alias because an alias with the {0} &apos;{1}&apos; does not exist..
/// </summary>
internal static string NoAliasFound {
get {
return ResourceManager.GetString("NoAliasFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set Alias.
/// </summary>
internal static string SetAliasAction {
get {
return ResourceManager.GetString("SetAliasAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0} Value: {1}.
/// </summary>
internal static string SetAliasTarget {
get {
return ResourceManager.GetString("SetAliasTarget", resourceCulture);
}
}
}

View file

@ -0,0 +1,81 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ConvertFromStringData {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ConvertFromStringData() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ConvertFromStringData", typeof(ConvertFromStringData).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Data item &apos;{1}&apos; in line &apos;{0}&apos; is already defined. .
/// </summary>
internal static string DataItemAlreadyDefined {
get {
return ResourceManager.GetString("DataItemAlreadyDefined", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Data line &apos;{0}&apos; is not in &apos;name=value&apos; format. .
/// </summary>
internal static string InvalidDataLine {
get {
return ResourceManager.GetString("InvalidDataLine", resourceCulture);
}
}
}

View file

@ -0,0 +1,90 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CsvCommandStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CsvCommandStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CsvCommandStrings", typeof(CsvCommandStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot append CSV content to the following file: {1}. The appended object does not have a property that corresponds to the following column: {0}. To continue with mismatched properties, add the -Force parameter, and then retry the command..
/// </summary>
internal static string CannotAppendCsvWithMismatchedPropertyNames {
get {
return ResourceManager.GetString("CannotAppendCsvWithMismatchedPropertyNames", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You must specify either the -Path or -LiteralPath parameters, but not both..
/// </summary>
internal static string CannotSpecifyPathAndLiteralPath {
get {
return ResourceManager.GetString("CannotSpecifyPathAndLiteralPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to One or more headers were not specified. Default names starting with &quot;H&quot; have been used in place of any missing headers..
/// </summary>
internal static string UseDefaultNameForUnspecifiedHeader {
get {
return ResourceManager.GetString("UseDefaultNameForUnspecifiedHeader", resourceCulture);
}
}
}

View file

@ -0,0 +1,234 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Debugger {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Debugger() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Debugger", typeof(Debugger).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to There is no breakpoint with ID &apos;{0}&apos;..
/// </summary>
internal static string BreakpointIdNotFound {
get {
return ResourceManager.GetString("BreakpointIdNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot set breakpoint. The language mode for this session is incompatible with the system-wide language mode..
/// </summary>
internal static string CannotSetBreakpointInconsistentLanguageMode {
get {
return ResourceManager.GetString("CannotSetBreakpointInconsistentLanguageMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Wait-Debugger called on line {0} in {1}..
/// </summary>
internal static string DebugBreakMessage {
get {
return ResourceManager.GetString("DebugBreakMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File &apos;{0}&apos; does not exist..
/// </summary>
internal static string FileDoesNotExist {
get {
return ResourceManager.GetString("FileDoesNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Line cannot be less than 1..
/// </summary>
internal static string LineLessThanOne {
get {
return ResourceManager.GetString("LineLessThanOne", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to persist debug options for Process {0}..
/// </summary>
internal static string PersistDebugPreferenceFailure {
get {
return ResourceManager.GetString("PersistDebugPreferenceFailure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Debugging is not supported on remote sessions..
/// </summary>
internal static string RemoteDebuggerNotSupported {
get {
return ResourceManager.GetString("RemoteDebuggerNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Breakpoints cannot be set in the remote session because remote debugging is not supported by the current host..
/// </summary>
internal static string RemoteDebuggerNotSupportedInHost {
get {
return ResourceManager.GetString("RemoteDebuggerNotSupportedInHost", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You cannot debug the default host Runspace using this cmdlet. To debug the default Runspace use the normal debugging commands from the host..
/// </summary>
internal static string RunspaceDebuggingCannotDebugDefaultRunspace {
get {
return ResourceManager.GetString("RunspaceDebuggingCannotDebugDefaultRunspace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to To end the debugging session type the &apos;Detach&apos; command at the debugger prompt, or type &apos;Ctrl+C&apos; otherwise..
/// </summary>
internal static string RunspaceDebuggingEndSession {
get {
return ResourceManager.GetString("RunspaceDebuggingEndSession", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot debug Runspace. There is no host or host UI. The debugger requires a host and host UI for debugging..
/// </summary>
internal static string RunspaceDebuggingNoHost {
get {
return ResourceManager.GetString("RunspaceDebuggingNoHost", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot debug Runspace. The host has no debugger. Try debugging the Runspace inside the Windows PowerShell console or the Windows PowerShell ISE, both of which have built-in debuggers..
/// </summary>
internal static string RunspaceDebuggingNoHostRunspaceOrDebugger {
get {
return ResourceManager.GetString("RunspaceDebuggingNoHostRunspaceOrDebugger", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Runspace was found..
/// </summary>
internal static string RunspaceDebuggingNoRunspaceFound {
get {
return ResourceManager.GetString("RunspaceDebuggingNoRunspaceFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Command or script completed..
/// </summary>
internal static string RunspaceDebuggingScriptCompleted {
get {
return ResourceManager.GetString("RunspaceDebuggingScriptCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Debugging Runspace: {0}.
/// </summary>
internal static string RunspaceDebuggingStarted {
get {
return ResourceManager.GetString("RunspaceDebuggingStarted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to More than one Runspace was found. Only one Runspace can be debugged at a time..
/// </summary>
internal static string RunspaceDebuggingTooManyRunspacesFound {
get {
return ResourceManager.GetString("RunspaceDebuggingTooManyRunspacesFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot set debug options on Runspace {0} because it is not in the Opened state..
/// </summary>
internal static string RunspaceOptionInvalidRunspaceState {
get {
return ResourceManager.GetString("RunspaceOptionInvalidRunspaceState", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No debugger was found for Runspace {0}..
/// </summary>
internal static string RunspaceOptionNoDebugger {
get {
return ResourceManager.GetString("RunspaceOptionNoDebugger", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot set breakpoint on file &apos;{0}&apos;; only *.ps1 and *.psm1 files are valid..
/// </summary>
internal static string WrongExtension {
get {
return ResourceManager.GetString("WrongExtension", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,144 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class EventingStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal EventingStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EventingStrings", typeof(EventingStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Action must be specified for non-forwarded events..
/// </summary>
internal static string ActionMandatoryForLocal {
get {
return ResourceManager.GetString("ActionMandatoryForLocal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event with identifier &apos;{0}&apos; does not exist..
/// </summary>
internal static string EventIdentifierNotFound {
get {
return ResourceManager.GetString("EventIdentifierNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event &apos;{0}&apos;.
/// </summary>
internal static string EventResource {
get {
return ResourceManager.GetString("EventResource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event subscription &apos;{0}&apos;.
/// </summary>
internal static string EventSubscription {
get {
return ResourceManager.GetString("EventSubscription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event subscription with identifier &apos;{0}&apos; does not exist..
/// </summary>
internal static string EventSubscriptionNotFound {
get {
return ResourceManager.GetString("EventSubscriptionNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event subscription with source identifier &apos;{0}&apos; does not exist..
/// </summary>
internal static string EventSubscriptionSourceNotFound {
get {
return ResourceManager.GetString("EventSubscriptionSourceNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove.
/// </summary>
internal static string Remove {
get {
return ResourceManager.GetString("Remove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event with source identifier &apos;{0}&apos; does not exist..
/// </summary>
internal static string SourceIdentifierNotFound {
get {
return ResourceManager.GetString("SourceIdentifierNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unsubscribe.
/// </summary>
internal static string Unsubscribe {
get {
return ResourceManager.GetString("Unsubscribe", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,72 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class GetMember {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal GetMember() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("GetMember", typeof(GetMember).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to You must specify an object for the Get-Member cmdlet..
/// </summary>
internal static string NoObjectSpecified {
get {
return ResourceManager.GetString("NoObjectSpecified", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,90 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class GetRandomCommandStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal GetRandomCommandStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("GetRandomCommandStrings", typeof(GetRandomCommandStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to &apos;maxValue&apos; must be greater than zero..
/// </summary>
internal static string MaxMustBeGreaterThanZeroApi {
get {
return ResourceManager.GetString("MaxMustBeGreaterThanZeroApi", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Minimum value ({0}) cannot be greater than or equal to the Maximum value ({1})..
/// </summary>
internal static string MinGreaterThanOrEqualMax {
get {
return ResourceManager.GetString("MinGreaterThanOrEqualMax", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &apos;minValue&apos; cannot be greater than maxValue..
/// </summary>
internal static string MinGreaterThanOrEqualMaxApi {
get {
return ResourceManager.GetString("MinGreaterThanOrEqualMaxApi", resourceCulture);
}
}
}

View file

@ -0,0 +1,81 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class HostStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal HostStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HostStrings", typeof(HostStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the color because {0} is not a valid color..
/// </summary>
internal static string InvalidColorErrorTemplate {
get {
return ResourceManager.GetString("InvalidColorErrorTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot evaluate the error because a string is not specified..
/// </summary>
internal static string NoStringToEvalulateError {
get {
return ResourceManager.GetString("NoStringToEvalulateError", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,137 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ImportLocalizedDataStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ImportLocalizedDataStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ImportLocalizedDataStrings", typeof(ImportLocalizedDataStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot import localized data. The definition of additional supported commands is not allowed in this language mode..
/// </summary>
internal static string CannotDefineSupportedCommand {
get {
return ResourceManager.GetString("CannotDefineSupportedCommand", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the Windows PowerShell data file &apos;{0}&apos; in directory &apos;{1}&apos;, or in any parent culture directories..
/// </summary>
internal static string CannotFindPsd1File {
get {
return ResourceManager.GetString("CannotFindPsd1File", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following error occurred while Windows PowerShell was loading the &apos;{0}&apos; script data file:
///{1}..
/// </summary>
internal static string ErrorLoadingDataFile {
get {
return ResourceManager.GetString("ErrorLoadingDataFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following error occurred while Windows PowerShell was opening the data file &apos;{0}&apos;:
///{1}..
/// </summary>
internal static string ErrorOpeningFile {
get {
return ResourceManager.GetString("ErrorOpeningFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The argument for the FileName parameter should not contain a path..
/// </summary>
internal static string FileNameParameterCannotHavePath {
get {
return ResourceManager.GetString("FileNameParameterCannotHavePath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The data file &apos;{0}&apos; cannot be found. .
/// </summary>
internal static string FileNotExist {
get {
return ResourceManager.GetString("FileNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The BindingVariable name &apos;{0}&apos; is invalid..
/// </summary>
internal static string IncorrectVariableName {
get {
return ResourceManager.GetString("IncorrectVariableName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The FileName parameter was not specified. The FileName parameter is required when Import-LocalizedData is not called from a script file..
/// </summary>
internal static string NotCalledFromAScriptFile {
get {
return ResourceManager.GetString("NotCalledFromAScriptFile", resourceCulture);
}
}
}

View file

@ -0,0 +1,99 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class MatchStringStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal MatchStringStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MatchStringStrings", typeof(MatchStringStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot open the file because the current provider ({0}) cannot open files..
/// </summary>
internal static string FileOpenError {
get {
return ResourceManager.GetString("FileOpenError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file {0} cannot be read: {1}.
/// </summary>
internal static string FileReadError {
get {
return ResourceManager.GetString("FileReadError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The option &quot;Context&quot; is not valid when searching results that are piped from Select-String output..
/// </summary>
internal static string FilterContextWarning {
get {
return ResourceManager.GetString("FilterContextWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The string {0} is not a valid regular expression: {1}.
/// </summary>
internal static string InvalidRegex {
get {
return ResourceManager.GetString("InvalidRegex", resourceCulture);
}
}
}

View file

@ -0,0 +1,90 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class MeasureObjectStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal MeasureObjectStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MeasureObjectStrings", typeof(MeasureObjectStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Input object &quot;{0}&quot; is not numeric..
/// </summary>
internal static string NonNumericInputObject {
get {
return ResourceManager.GetString("NonNumericInputObject", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property &quot;{0}&quot; is not numeric..
/// </summary>
internal static string NonNumericProperty {
get {
return ResourceManager.GetString("NonNumericProperty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The property &quot;{0}&quot; cannot be found in the input for any objects..
/// </summary>
internal static string PropertyNotFound {
get {
return ResourceManager.GetString("PropertyNotFound", resourceCulture);
}
}
}

View file

@ -0,0 +1,144 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class NewObjectStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal NewObjectStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NewObjectStrings", typeof(NewObjectStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to {0} Please note that Single-Threaded Apartment is not supported in OneCore PowerShell..
/// </summary>
internal static string ApartmentNotSupported {
get {
return ResourceManager.GetString("ApartmentNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot create type. Only core types are supported in this language mode..
/// </summary>
internal static string CannotCreateTypeConstrainedLanguage {
get {
return ResourceManager.GetString("CannotCreateTypeConstrainedLanguage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A constructor was not found. Cannot find an appropriate constructor for type {0}..
/// </summary>
internal static string CannotFindAppropriateCtor {
get {
return ResourceManager.GetString("CannotFindAppropriateCtor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating instances of attribute and delegated Windows RT types is not supported..
/// </summary>
internal static string CannotInstantiateWinRTType {
get {
return ResourceManager.GetString("CannotInstantiateWinRTType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot load COM type {0}..
/// </summary>
internal static string CannotLoadComObjectType {
get {
return ResourceManager.GetString("CannotLoadComObjectType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The object written to the pipeline is an instance of the type &quot;{0}&quot; from the component&apos;s primary interoperability assembly. If this type exposes different members than the IDispatch members, scripts that are written to work with this object might not work if the primary interoperability assembly is not installed..
/// </summary>
internal static string ComInteropLoaded {
get {
return ResourceManager.GetString("ComInteropLoaded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value supplied is not valid, or the property is read-only. Change the value, and then try again..
/// </summary>
internal static string InvalidValue {
get {
return ResourceManager.GetString("InvalidValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The member &quot;{1}&quot; was not found for the specified {2} object..
/// </summary>
internal static string MemberNotFound {
get {
return ResourceManager.GetString("MemberNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find type [{0}]: verify that the assembly containing this type is loaded..
/// </summary>
internal static string TypeNotFound {
get {
return ResourceManager.GetString("TypeNotFound", resourceCulture);
}
}
}

View file

@ -0,0 +1,108 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class SelectObjectStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal SelectObjectStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SelectObjectStrings", typeof(SelectObjectStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The property cannot be processed because the property &quot;{0}&quot; already exists..
/// </summary>
internal static string AlreadyExistingProperty {
get {
return ResourceManager.GetString("AlreadyExistingProperty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A property is an empty script block and does not provide a name..
/// </summary>
internal static string EmptyScriptBlockAndNoName {
get {
return ResourceManager.GetString("EmptyScriptBlockAndNoName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Multiple properties cannot be expanded..
/// </summary>
internal static string MutlipleExpandProperties {
get {
return ResourceManager.GetString("MutlipleExpandProperties", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property &quot;{0}&quot; cannot be found..
/// </summary>
internal static string PropertyNotFound {
get {
return ResourceManager.GetString("PropertyNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot rename multiple results..
/// </summary>
internal static string RenamingMultipleResults {
get {
return ResourceManager.GetString("RenamingMultipleResults", resourceCulture);
}
}
}

View file

@ -0,0 +1,72 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class SortObjectStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal SortObjectStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SortObjectStrings", typeof(SortObjectStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to &quot;Sort-Object&quot; - &quot;{0}&quot; cannot be found in &quot;InputObject&quot;..
/// </summary>
internal static string PropertyNotFound {
get {
return ResourceManager.GetString("PropertyNotFound", resourceCulture);
}
}
}

View file

@ -0,0 +1,270 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class UpdateDataStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal UpdateDataStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("UpdateDataStrings", typeof(UpdateDataStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot update the format data with a FormatTable instance..
/// </summary>
internal static string CannotUpdateFormatWithFormatTable {
get {
return ResourceManager.GetString("CannotUpdateFormatWithFormatTable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot update a member with type &quot;{0}&quot;. Specify a different type for the MemberType parameter..
/// </summary>
internal static string CannotUpdateMemberType {
get {
return ResourceManager.GetString("CannotUpdateMemberType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot update the type data with a TypeTable instance..
/// </summary>
internal static string CannotUpdateTypeWithTypeTable {
get {
return ResourceManager.GetString("CannotUpdateTypeWithTypeTable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updating format data is not allowed in this runspace. The &apos;DisableFormatUpdates&apos; property is set to True when creating the runspace..
/// </summary>
internal static string FormatUpdatesDisabled {
get {
return ResourceManager.GetString("FormatUpdatesDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The MemberName, Value, and SecondValue parameters cannot be specified without the MemberType parameter..
/// </summary>
internal static string MemberTypeIsMissing {
get {
return ResourceManager.GetString("MemberTypeIsMissing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove TypeData.
/// </summary>
internal static string RemoveTypeDataAction {
get {
return ResourceManager.GetString("RemoveTypeDataAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name of the type that will be removed: {0}.
/// </summary>
internal static string RemoveTypeDataTarget {
get {
return ResourceManager.GetString("RemoveTypeDataTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove type file.
/// </summary>
internal static string RemoveTypeFileAction {
get {
return ResourceManager.GetString("RemoveTypeFileAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value of the SerializationDepth property should not be negative..
/// </summary>
internal static string SerializationDepthNegative {
get {
return ResourceManager.GetString("SerializationDepthNegative", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} parameter is required for the type &quot;{1}&quot;. Please specify the {0} parameter..
/// </summary>
internal static string ShouldBeSpecified {
get {
return ResourceManager.GetString("ShouldBeSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} parameter should not be null or an empty string for a member of type &quot;{1}&quot;. Specify a non-null value for the {0} parameter when updating this member type..
/// </summary>
internal static string ShouldNotBeNull {
get {
return ResourceManager.GetString("ShouldNotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} parameter is not necessary for a member of type &quot;{1}&quot;, and should not be specified. Do not specify the {0} parameter when updating this member type..
/// </summary>
internal static string ShouldNotBeSpecified {
get {
return ResourceManager.GetString("ShouldNotBeSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The target type name should not be null, empty, or contain only white spaces..
/// </summary>
internal static string TargetTypeNameEmpty {
get {
return ResourceManager.GetString("TargetTypeNameEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No member is specified for the update on type &quot;{0}&quot;..
/// </summary>
internal static string TypeDataEmpty {
get {
return ResourceManager.GetString("TypeDataEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file {0} is not imported into the current session..
/// </summary>
internal static string TypeFileNotExistsInCurrentSession {
get {
return ResourceManager.GetString("TypeFileNotExistsInCurrentSession", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot read the file &quot;{0}&quot; because it does not have the file name extension &quot;{1}&quot;..
/// </summary>
internal static string UpdateData_WrongExtension {
get {
return ResourceManager.GetString("UpdateData_WrongExtension", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot open the file because the current provider is &quot;{0}&quot;, and this command requires a file..
/// </summary>
internal static string UpdateData_WrongProviderError {
get {
return ResourceManager.GetString("UpdateData_WrongProviderError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update FormatData.
/// </summary>
internal static string UpdateFormatDataAction {
get {
return ResourceManager.GetString("UpdateFormatDataAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to FileName: {0}.
/// </summary>
internal static string UpdateTarget {
get {
return ResourceManager.GetString("UpdateTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update TypeData.
/// </summary>
internal static string UpdateTypeDataAction {
get {
return ResourceManager.GetString("UpdateTypeDataAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Type to update: {0}.
/// </summary>
internal static string UpdateTypeDataTarget {
get {
return ResourceManager.GetString("UpdateTypeDataTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Value and SecondValue parameters should not both be null for a member of type &quot;{0}&quot;. Specify a non-null value for one of the two parameters..
/// </summary>
internal static string Value1AndValue2AreNotBothNull {
get {
return ResourceManager.GetString("Value1AndValue2AreNotBothNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only one member type can be specified. The member types specified are: &quot;{0}&quot;. Update the type with only one member type..
/// </summary>
internal static string WrongMemberCount {
get {
return ResourceManager.GetString("WrongMemberCount", resourceCulture);
}
}
}

View file

@ -0,0 +1,225 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class UtilityCommonStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal UtilityCommonStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("UtilityCommonStrings", typeof(UtilityCommonStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Algorithm &apos;{0}&apos; is not supported in this system..
/// </summary>
internal static string AlgorithmTypeNotSupported {
get {
return ResourceManager.GetString("AlgorithmTypeNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file &apos;{0}&apos; could not be parsed as a PowerShell Data File..
/// </summary>
internal static string CouldNotParseAsPowerShellDataFile {
get {
return ResourceManager.GetString("CouldNotParseAsPowerShellDataFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because &apos;{0}&apos; is empty or blank. Please specify CSSUri and then run the command..
/// </summary>
internal static string EmptyCSSUri {
get {
return ResourceManager.GetString("EmptyCSSUri", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because the file path &apos;{0}&apos; is not valid. Please provide a valid file path and then run the command..
/// </summary>
internal static string FileNotFound {
get {
return ResourceManager.GetString("FileNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot open the file because the current provider ({0}) cannot open files..
/// </summary>
internal static string FileOpenError {
get {
return ResourceManager.GetString("FileOpenError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file &apos;{0}&apos; cannot be read: {1}.
/// </summary>
internal static string FileReadError {
get {
return ResourceManager.GetString("FileReadError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path: .
/// </summary>
internal static string FormatHexPathPrefix {
get {
return ResourceManager.GetString("FormatHexPathPrefix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot display the context of {0} as hex. The path resolves to multiple files..
/// </summary>
internal static string FormatHexResolvePathError {
get {
return ResourceManager.GetString("FormatHexResolvePathError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot convert input of type {0} to hexadecimal. To view the hexadecimal formatting of its string representation, pipe it to the Out-String cmdlet before piping it to Format-Hex..
/// </summary>
internal static string FormatHexTypeNotSupported {
get {
return ResourceManager.GetString("FormatHexTypeNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot be run because using the AsHashTable parameter with more than one property requires adding the AsString parameter..
/// </summary>
internal static string GroupObjectSingleProperty {
get {
return ResourceManager.GetString("GroupObjectSingleProperty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot be run because the AsString parameter requires that you specify the AsHashtable parameter..
/// </summary>
internal static string GroupObjectWithHashTable {
get {
return ResourceManager.GetString("GroupObjectWithHashTable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The objects grouped by this property cannot be expanded because there is a key duplication. Provide a valid value for the property, and then try again..
/// </summary>
internal static string InvalidOperation {
get {
return ResourceManager.GetString("InvalidOperation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {2} has one or more exceptions that are not valid..
/// </summary>
internal static string Invalidpath {
get {
return ResourceManager.GetString("Invalidpath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are no matching results found for {2}..
/// </summary>
internal static string NoMatchFound {
get {
return ResourceManager.GetString("NoMatchFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command is not supported on this operating system..
/// </summary>
internal static string NotSupported {
get {
return ResourceManager.GetString("NotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find path &apos;{0}&apos; because it does not exist..
/// </summary>
internal static string PathDoesNotExist {
get {
return ResourceManager.GetString("PathDoesNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot use tag &apos;{0}&apos;. The &apos;PS&apos; prefix is reserved..
/// </summary>
internal static string PSPrefixReservedInInformationTag {
get {
return ResourceManager.GetString("PSPrefixReservedInInformationTag", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because the prefix value in the Namespace parameter is null. Provide a valid value for the prefix, and then run the command again..
/// </summary>
internal static string SearchXMLPrefixNullError {
get {
return ResourceManager.GetString("SearchXMLPrefixNullError", resourceCulture);
}
}
}

View file

@ -0,0 +1,153 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class VariableCommandStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal VariableCommandStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("VariableCommandStrings", typeof(VariableCommandStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Add variable.
/// </summary>
internal static string AddVariableAction {
get {
return ResourceManager.GetString("AddVariableAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0}.
/// </summary>
internal static string AddVariableTarget {
get {
return ResourceManager.GetString("AddVariableTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear variable.
/// </summary>
internal static string ClearVariableAction {
get {
return ResourceManager.GetString("ClearVariableAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0}.
/// </summary>
internal static string ClearVariableTarget {
get {
return ResourceManager.GetString("ClearVariableTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New variable.
/// </summary>
internal static string NewVariableAction {
get {
return ResourceManager.GetString("NewVariableAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0} Value: {1}.
/// </summary>
internal static string NewVariableTarget {
get {
return ResourceManager.GetString("NewVariableTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove variable.
/// </summary>
internal static string RemoveVariableAction {
get {
return ResourceManager.GetString("RemoveVariableAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0}.
/// </summary>
internal static string RemoveVariableTarget {
get {
return ResourceManager.GetString("RemoveVariableTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set variable.
/// </summary>
internal static string SetVariableAction {
get {
return ResourceManager.GetString("SetVariableAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name: {0} Value: {1}.
/// </summary>
internal static string SetVariableTarget {
get {
return ResourceManager.GetString("SetVariableTarget", resourceCulture);
}
}
}

View file

@ -0,0 +1,72 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class WriteErrorStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal WriteErrorStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WriteErrorStrings", typeof(WriteErrorStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to &quot;The Write-Error cmdlet reported an error.&quot;.
/// </summary>
internal static string WriteErrorException {
get {
return ResourceManager.GetString("WriteErrorException", resourceCulture);
}
}
}

View file

@ -0,0 +1,90 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class WriteProgressResourceStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal WriteProgressResourceStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WriteProgressResourceStrings", typeof(WriteProgressResourceStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Text to describe the activity for which progress is being reported..
/// </summary>
internal static string ActivityParameterHelpMessage {
get {
return ResourceManager.GetString("ActivityParameterHelpMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Processing.
/// </summary>
internal static string Processing {
get {
return ResourceManager.GetString("Processing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Text to describe the current state of the activity for which progress is being reported..
/// </summary>
internal static string StatusParameterHelpMessage {
get {
return ResourceManager.GetString("StatusParameterHelpMessage", resourceCulture);
}
}
}

View file

@ -0,0 +1,279 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CertificateProviderStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CertificateProviderStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CertificateProviderStrings", typeof(CertificateProviderStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Invoke Certificate Manager.
/// </summary>
internal static string Action_Invoke {
get {
return ResourceManager.GetString("Action_Invoke", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move certificate.
/// </summary>
internal static string Action_Move {
get {
return ResourceManager.GetString("Action_Move", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove certificate.
/// </summary>
internal static string Action_Remove {
get {
return ResourceManager.GetString("Action_Remove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove certificate and its private key..
/// </summary>
internal static string Action_RemoveAndDeleteKey {
get {
return ResourceManager.GetString("Action_RemoveAndDeleteKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You cannot create an item other than certificate store. .
/// </summary>
internal static string CannotCreateItem {
get {
return ResourceManager.GetString("CannotCreateItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating certificate stores under CurrentUser is not supported. .
/// </summary>
internal static string CannotCreateUserStore {
get {
return ResourceManager.GetString("CannotCreateUserStore", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deleting certificate stores under CurrentUser is not supported. .
/// </summary>
internal static string CannotDeleteUserStore {
get {
return ResourceManager.GetString("CannotDeleteUserStore", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You cannot move a certificate container. .
/// </summary>
internal static string CannotMoveContainer {
get {
return ResourceManager.GetString("CannotMoveContainer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You cannot move a certificate from user store to or from machine. .
/// </summary>
internal static string CannotMoveCrossContext {
get {
return ResourceManager.GetString("CannotMoveCrossContext", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You cannot move a certificate to the same store. .
/// </summary>
internal static string CannotMoveToSameStore {
get {
return ResourceManager.GetString("CannotMoveToSameStore", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You cannot remove a certificate container. .
/// </summary>
internal static string CannotRemoveContainer {
get {
return ResourceManager.GetString("CannotRemoveContainer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the X509 certificate at path {0}..
/// </summary>
internal static string CertificateNotFound {
get {
return ResourceManager.GetString("CertificateNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the certificate store because the specified X509 store location {0} is not valid..
/// </summary>
internal static string CertificateStoreLocationNotFound {
get {
return ResourceManager.GetString("CertificateStoreLocationNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the X509 certificate store at path {0}..
/// </summary>
internal static string CertificateStoreNotFound {
get {
return ResourceManager.GetString("CertificateStoreNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to X509 Certificate Provider.
/// </summary>
internal static string CertProvidername {
get {
return ResourceManager.GetString("CertProvidername", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The destination is not a valid store. .
/// </summary>
internal static string InvalidDestStore {
get {
return ResourceManager.GetString("InvalidDestStore", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the path because path {0} is not a valid certificate provider path..
/// </summary>
internal static string InvalidPath {
get {
return ResourceManager.GetString("InvalidPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Item: {0} Destination: {1} .
/// </summary>
internal static string MoveItemTemplate {
get {
return ResourceManager.GetString("MoveItemTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not supported in the current operating system. .
/// </summary>
internal static string NotSupported_CertificateProvider {
get {
return ResourceManager.GetString("NotSupported_CertificateProvider", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to . The following error may be a result of user credentials required on the remote machine. See Enable-WSManCredSSP Cmdlet help on how to enable and use CredSSP for delegation with Windows PowerShell remoting. .
/// </summary>
internal static string RemoteErrorMessage {
get {
return ResourceManager.GetString("RemoteErrorMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Item: {0} .
/// </summary>
internal static string RemoveItemTemplate {
get {
return ResourceManager.GetString("RemoveItemTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The store {0} is a built-in system store and cannot be deleted..
/// </summary>
internal static string RemoveStoreTemplate {
get {
return ResourceManager.GetString("RemoveStoreTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The operation is on user root store and UI is not allowed. .
/// </summary>
internal static string UINotAllowed {
get {
return ResourceManager.GetString("UINotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Private key skipped. The certificate has no private key association. .
/// </summary>
internal static string VerboseNoPrivateKey {
get {
return ResourceManager.GetString("VerboseNoPrivateKey", resourceCulture);
}
}
}

View file

@ -0,0 +1,126 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ExecutionPolicyCommands {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ExecutionPolicyCommands() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ExecutionPolicyCommands", typeof(ExecutionPolicyCommands).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot set execution policy. Execution policies at the MachinePolicy or UserPolicy scopes must be set through Group Policy..
/// </summary>
internal static string CantSetGroupPolicy {
get {
return ResourceManager.GetString("CantSetGroupPolicy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Windows PowerShell updated your execution policy successfully, but the setting is overridden by a policy defined at a more specific scope. Due to the override, your shell will retain its current effective execution policy of {0}. Type &quot;Get-ExecutionPolicy -List&quot; to view your execution policy settings. For more information please see &quot;Get-Help Set-ExecutionPolicy&quot;..
/// </summary>
internal static string ExecutionPolicyOverridden {
get {
return ResourceManager.GetString("ExecutionPolicyOverridden", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Contact your system administrator..
/// </summary>
internal static string ExecutionPolicyOverriddenRecommendedAction {
get {
return ResourceManager.GetString("ExecutionPolicyOverriddenRecommendedAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot get execution policy. Specify only the List or Scope parameters..
/// </summary>
internal static string ListAndScopeSpecified {
get {
return ResourceManager.GetString("ListAndScopeSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} To change the execution policy for the default (LocalMachine) scope, start Windows PowerShell with the &quot;Run as administrator&quot; option. To change the execution policy for the current user, run &quot;Set-ExecutionPolicy -Scope CurrentUser&quot;..
/// </summary>
internal static string SetExecutionPolicyAccessDeniedError {
get {
return ResourceManager.GetString("SetExecutionPolicyAccessDeniedError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Execution Policy Change.
/// </summary>
internal static string SetExecutionPolicyCaption {
get {
return ResourceManager.GetString("SetExecutionPolicyCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose you to the security risks described in the about_Execution_Policies help topic at http://go.microsoft.com/fwlink/?LinkID=135170. Do you want to change the execution policy?.
/// </summary>
internal static string SetExecutionPolicyQuery {
get {
return ResourceManager.GetString("SetExecutionPolicyQuery", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,81 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class SecureStringCommands {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal SecureStringCommands() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SecureStringCommands", typeof(SecureStringCommands).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The system cannot protect plain text input. To suppress this warning and convert the plain text to a SecureString, reissue the command specifying the Force parameter. For more information ,type: get-help ConvertTo-SecureString..
/// </summary>
internal static string ForceRequired {
get {
return ResourceManager.GetString("ForceRequired", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enter secret: .
/// </summary>
internal static string NewSecureString_Prompt {
get {
return ResourceManager.GetString("NewSecureString_Prompt", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,99 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class SignatureCommands {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal SignatureCommands() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SignatureCommands", typeof(SignatureCommands).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The Get-AuthenticodeSignature cmdlet does not support directories. Supply a path to a file and retry..
/// </summary>
internal static string CannotRetrieveFromContainer {
get {
return ResourceManager.GetString("CannotRetrieveFromContainer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot sign code. The specified certificate is not suitable for code signing..
/// </summary>
internal static string CertNotGoodForSigning {
get {
return ResourceManager.GetString("CertNotGoodForSigning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} was not found..
/// </summary>
internal static string FileNotFound {
get {
return ResourceManager.GetString("FileNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot sign code. The TimeStamp server URL must be fully qualified in the form of http://&lt;server url&gt;.
/// </summary>
internal static string TimeStampUrlRequired {
get {
return ResourceManager.GetString("TimeStampUrlRequired", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,171 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class UtilsStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal UtilsStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("UtilsStrings", typeof(UtilsStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot digitally sign file because file {0} is smaller than 4 bytes in size. Files must be at least 4 bytes in order to be digitally signed..
/// </summary>
internal static string FileSmallerThan4Bytes {
get {
return ResourceManager.GetString("FileSmallerThan4Bytes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not create an empty SACL..
/// </summary>
internal static string GetEmptySaclFail {
get {
return ResourceManager.GetString("GetEmptySaclFail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot get the ACL because the necessary method, GetSecurityDescriptor, does not exist..
/// </summary>
internal static string GetMethodNotFound {
get {
return ResourceManager.GetString("GetMethodNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not create a SACL with the specified central access policy..
/// </summary>
internal static string GetSaclWithCapIdFail {
get {
return ResourceManager.GetString("GetSaclWithCapIdFail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not enable SeSecurityPrivilege..
/// </summary>
internal static string GetTokenWithEnabledPrivilegeFail {
get {
return ResourceManager.GetString("GetTokenWithEnabledPrivilegeFail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Central Access Policy identifier or name is not valid. If specifying an identifier, it must begin with S-1-17. If specifying a name, the policy must be applied on the target machine..
/// </summary>
internal static string InvalidCentralAccessPolicyIdentifier {
get {
return ResourceManager.GetString("InvalidCentralAccessPolicyIdentifier", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ClearCentralAccessPolicy and CentralAccessPolicy parameters cannot be used at the same time..
/// </summary>
internal static string InvalidCentralAccessPolicyParameters {
get {
return ResourceManager.GetString("InvalidCentralAccessPolicyParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not perform operation because an exception was thrown during method invoke..
/// </summary>
internal static string MethodInvokeFail {
get {
return ResourceManager.GetString("MethodInvokeFail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot perform the operation because it is not supported on the object found in path {0}..
/// </summary>
internal static string OperationNotSupportedOnPath {
get {
return ResourceManager.GetString("OperationNotSupportedOnPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Windows PowerShell credential request..
/// </summary>
internal static string PromptForCredential_DefaultCaption {
get {
return ResourceManager.GetString("PromptForCredential_DefaultCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not set central access policy..
/// </summary>
internal static string SetCentralAccessPolicyFail {
get {
return ResourceManager.GetString("SetCentralAccessPolicyFail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot set the ACL because the method that it needs to invoke, SetSecurityDescriptor, does not exist..
/// </summary>
internal static string SetMethodNotFound {
get {
return ResourceManager.GetString("SetMethodNotFound", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,288 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Authenticode {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Authenticode() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Authenticode", typeof(Authenticode).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Do you want to run software from this untrusted publisher?.
/// </summary>
internal static string AuthenticodePromptCaption {
get {
return ResourceManager.GetString("AuthenticodePromptCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} is published by {1} and is not trusted on your system. Only run scripts from trusted publishers..
/// </summary>
internal static string AuthenticodePromptText {
get {
return ResourceManager.GetString("AuthenticodePromptText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Software {0} is published by an unknown publisher. It is recommended that you do not run this software..
/// </summary>
internal static string AuthenticodePromptText_UnknownPublisher {
get {
return ResourceManager.GetString("AuthenticodePromptText_UnknownPublisher", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot sign code. The specified certificate is not suitable for code signing..
/// </summary>
internal static string CertNotGoodForSigning {
get {
return ResourceManager.GetString("CertNotGoodForSigning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;Always run.
/// </summary>
internal static string Choice_AlwaysRun {
get {
return ResourceManager.GetString("Choice_AlwaysRun", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Run the script from this publisher now, and do not prompt me to run this script in the future..
/// </summary>
internal static string Choice_AlwaysRun_Help {
get {
return ResourceManager.GetString("Choice_AlwaysRun_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;Do not run.
/// </summary>
internal static string Choice_DoNotRun {
get {
return ResourceManager.GetString("Choice_DoNotRun", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not run the script from this publisher now, and continue to prompt me to run this script in the future..
/// </summary>
internal static string Choice_DoNotRun_Help {
get {
return ResourceManager.GetString("Choice_DoNotRun_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ne&amp;ver run.
/// </summary>
internal static string Choice_NeverRun {
get {
return ResourceManager.GetString("Choice_NeverRun", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not run the script from this publisher now, and do not prompt me to run this script in future. Future attempts to run this script will result in a silent failure..
/// </summary>
internal static string Choice_NeverRun_Help {
get {
return ResourceManager.GetString("Choice_NeverRun_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;Run once.
/// </summary>
internal static string Choice_RunOnce {
get {
return ResourceManager.GetString("Choice_RunOnce", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Run the script from this publisher now, and continue to prompt me to run this script in the future..
/// </summary>
internal static string Choice_RunOnce_Help {
get {
return ResourceManager.GetString("Choice_RunOnce_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;Suspend.
/// </summary>
internal static string Choice_Suspend {
get {
return ResourceManager.GetString("Choice_Suspend", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pause the current pipeline and return to the command prompt. Type exit to resume operation when you are done..
/// </summary>
internal static string Choice_Suspend_Help {
get {
return ResourceManager.GetString("Choice_Suspend_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot sign code. The hash algorithm is not supported..
/// </summary>
internal static string InvalidHashAlgorithm {
get {
return ResourceManager.GetString("InvalidHashAlgorithm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} cannot be loaded because its operation is blocked by software restriction policies, such as those created by using Group Policy..
/// </summary>
internal static string Reason_DisallowedBySafer {
get {
return ResourceManager.GetString("Reason_DisallowedBySafer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} cannot be loaded because you opted not to run this software now..
/// </summary>
internal static string Reason_DoNotRun {
get {
return ResourceManager.GetString("Reason_DoNotRun", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} cannot be loaded because its content could not be read..
/// </summary>
internal static string Reason_FileContentUnavailable {
get {
return ResourceManager.GetString("Reason_FileContentUnavailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} cannot be loaded because you opted never to run software from this publisher..
/// </summary>
internal static string Reason_NeverRun {
get {
return ResourceManager.GetString("Reason_NeverRun", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} is published by {1}. This publisher is explicitly not trusted on your system. The script will not run on the system. For more information, run the command &quot;get-help about_signing&quot;..
/// </summary>
internal static string Reason_NotTrusted {
get {
return ResourceManager.GetString("Reason_NotTrusted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at http://go.microsoft.com/fwlink/?LinkID=135170..
/// </summary>
internal static string Reason_RestrictedMode {
get {
return ResourceManager.GetString("Reason_RestrictedMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} cannot be loaded. {1}..
/// </summary>
internal static string Reason_Unknown {
get {
return ResourceManager.GetString("Reason_Unknown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Security warning.
/// </summary>
internal static string RemoteFilePromptCaption {
get {
return ResourceManager.GetString("RemoteFilePromptCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Run only scripts that you trust. While scripts from the internet can be useful, this script can potentially harm your computer. If you trust this script, use the Unblock-File cmdlet to allow the script to run without this warning message. Do you want to run {0}?.
/// </summary>
internal static string RemoteFilePromptText {
get {
return ResourceManager.GetString("RemoteFilePromptText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot sign code. The TimeStamp server URL must be fully qualified, and in the format http://&lt;server url&gt;..
/// </summary>
internal static string TimeStampUrlRequired {
get {
return ResourceManager.GetString("TimeStampUrlRequired", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,72 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class AuthorizationManagerBase {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal AuthorizationManagerBase() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AuthorizationManagerBase", typeof(AuthorizationManagerBase).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to AuthorizationManager check failed..
/// </summary>
internal static string AuthorizationManagerDefaultFailureReason {
get {
return ResourceManager.GetString("AuthorizationManagerDefaultFailureReason", resourceCulture);
}
}
}

View file

@ -0,0 +1,333 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class AutomationExceptions {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal AutomationExceptions() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AutomationExceptions", typeof(AutomationExceptions).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process argument because the value of argument &quot;{0}&quot; is not valid. Change the value of the &quot;{0}&quot; argument and run the operation again..
/// </summary>
internal static string Argument {
get {
return ResourceManager.GetString("Argument", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process argument because the value of argument &quot;{0}&quot; is null. Change the value of argument &quot;{0}&quot; to a non-null value..
/// </summary>
internal static string ArgumentNull {
get {
return ResourceManager.GetString("ArgumentNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process argument because the value of argument &quot;{0}&quot; is out of range. Change argument &quot;{0}&quot; to a value that is within range..
/// </summary>
internal static string ArgumentOutOfRange {
get {
return ResourceManager.GetString("ArgumentOutOfRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The script block cannot be converted because it contains more than one clause. Expressions or control structures are not permitted. Verify that the script block contains exactly one pipeline or command..
/// </summary>
internal static string CanConvertOneClauseOnly {
get {
return ResourceManager.GetString("CanConvertOneClauseOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The script block cannot be converted to a Windows PowerShell object because it contains forbidden redirection operators..
/// </summary>
internal static string CanConvertOneOutputErrorRedir {
get {
return ResourceManager.GetString("CanConvertOneOutputErrorRedir", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only a script block that contains exactly one pipeline or command can be converted. Expressions or control structures are not permitted. Verify that the script block contains exactly one pipeline or command..
/// </summary>
internal static string CanOnlyConvertOnePipeline {
get {
return ResourceManager.GetString("CanOnlyConvertOnePipeline", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An empty script block cannot be converted. Verify that the script block contains exactly one pipeline or command..
/// </summary>
internal static string CantConvertEmptyPipeline {
get {
return ResourceManager.GetString("CantConvertEmptyPipeline", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock that starts a pipeline with an expression..
/// </summary>
internal static string CantConvertPipelineStartsWithExpression {
get {
return ResourceManager.GetString("CantConvertPipelineStartsWithExpression", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The script block cannot be converted to an open generic type. Define an appropriate closed generic type, and then retry..
/// </summary>
internal static string CantConvertScriptBlockToOpenGenericType {
get {
return ResourceManager.GetString("CantConvertScriptBlockToOpenGenericType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock that does not have an associated operation context..
/// </summary>
internal static string CantConvertScriptBlockWithNoContext {
get {
return ResourceManager.GetString("CantConvertScriptBlockWithNoContext", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A script block that contains a top-level trap statement cannot be converted..
/// </summary>
internal static string CantConvertScriptBlockWithTrap {
get {
return ResourceManager.GetString("CantConvertScriptBlockWithTrap", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock which invokes pipelines, commands or functions to evaluate arguments of the main pipeline..
/// </summary>
internal static string CantConvertWithCommandInvocations {
get {
return ResourceManager.GetString("CantConvertWithCommandInvocations", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock that uses dot sourcing..
/// </summary>
internal static string CantConvertWithDotSourcing {
get {
return ResourceManager.GetString("CantConvertWithDotSourcing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock evaluating dynamic expressions. Dynamic expression: {0}..
/// </summary>
internal static string CantConvertWithDynamicExpression {
get {
return ResourceManager.GetString("CantConvertWithDynamicExpression", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock evaluating non-constant expressions. Non-constant expression: {0}..
/// </summary>
internal static string CantConvertWithNonConstantExpression {
get {
return ResourceManager.GetString("CantConvertWithNonConstantExpression", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock that invokes other script blocks..
/// </summary>
internal static string CantConvertWithScriptBlockInvocation {
get {
return ResourceManager.GetString("CantConvertWithScriptBlockInvocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock that tries to pass other script blocks inside argument values..
/// </summary>
internal static string CantConvertWithScriptBlocks {
get {
return ResourceManager.GetString("CantConvertWithScriptBlocks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot generate a Windows PowerShell object for a ScriptBlock dereferencing variables undeclared in the param(...) block. Name of undeclared variable: {0}..
/// </summary>
internal static string CantConvertWithUndeclaredVariables {
get {
return ResourceManager.GetString("CantConvertWithUndeclaredVariables", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot get the value of the Using expression &apos;{0}&apos; in the specified variable dictionary. When creating a PowerShell instance from a script block, the Using expression cannot contain an indexing operation or member-accessing operation..
/// </summary>
internal static string CantGetUsingExpressionValueWithSpecifiedVariableDictionary {
get {
return ResourceManager.GetString("CantGetUsingExpressionValueWithSpecifiedVariableDictionary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot create workflow. The type &apos;{0}&apos; from the &apos;{1}&apos; module could not be loaded..
/// </summary>
internal static string CantLoadWorkflowType {
get {
return ResourceManager.GetString("CantLoadWorkflowType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Object &quot;{0}&quot; is the wrong type to return from the dynamicparam block. The dynamicparam block must return either $null, or an object with type [System.Management.Automation.RuntimeDefinedParameterDictionary]..
/// </summary>
internal static string DynamicParametersWrongType {
get {
return ResourceManager.GetString("DynamicParametersWrongType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command was stopped by the user..
/// </summary>
internal static string HaltCommandException {
get {
return ResourceManager.GetString("HaltCommandException", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot perform operation because operation &quot;{0}&quot; is not valid. Remove operation &quot;{0}&quot;, or investigate why it is not valid..
/// </summary>
internal static string InvalidOperation {
get {
return ResourceManager.GetString("InvalidOperation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process argument because the value of argument &quot;{0}&quot; is not valid. Valid values are &quot;Global&quot;, &quot;Local&quot;, or &quot;Script&quot;, or a number relative to the current scope (0 through the number of scopes where 0 is the current scope and 1 is its parent). Change the value of the &quot;{0}&quot; argument and run the operation again..
/// </summary>
internal static string InvalidScopeIdArgument {
get {
return ResourceManager.GetString("InvalidScopeIdArgument", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot perform operation because operation &quot;{0}&quot; is not implemented..
/// </summary>
internal static string NotImplemented {
get {
return ResourceManager.GetString("NotImplemented", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot perform operation because operation &quot;{0}&quot; is not supported..
/// </summary>
internal static string NotSupported {
get {
return ResourceManager.GetString("NotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot perform operation because object &quot;{0}&quot; has already been disposed..
/// </summary>
internal static string ObjectDisposed {
get {
return ResourceManager.GetString("ObjectDisposed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The script block cannot be invoked because it contains more than one clause. The Invoke() method can only be used on script blocks that contain a single clause..
/// </summary>
internal static string ScriptBlockInvokeOnOneClauseOnly {
get {
return ResourceManager.GetString("ScriptBlockInvokeOnOneClauseOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value of the using variable &apos;$using:{0}&apos; cannot be retrieved because it has not been set in the local session..
/// </summary>
internal static string UsingVariableIsUndefined {
get {
return ResourceManager.GetString("UsingVariableIsUndefined", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Windows PowerShell Workflow is not supported in a Windows PowerShell x86-based console. Open a Windows PowerShell x64-based console, and then try again..
/// </summary>
internal static string WorkflowDoesNotSupportWOW64 {
get {
return ResourceManager.GetString("WorkflowDoesNotSupportWOW64", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,81 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CimInstanceTypeAdapterResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CimInstanceTypeAdapterResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CimInstanceTypeAdapterResources", typeof(CimInstanceTypeAdapterResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot convert &quot;{0}&quot; to an object of type &quot;{1}&quot;..
/// </summary>
internal static string BaseObjectNotCimInstance {
get {
return ResourceManager.GetString("BaseObjectNotCimInstance", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &quot;{0}&quot; is a ReadOnly property..
/// </summary>
internal static string ReadOnlyCIMProperty {
get {
return ResourceManager.GetString("ReadOnlyCIMProperty", resourceCulture);
}
}
}

View file

@ -0,0 +1,214 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CmdletizationCoreResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CmdletizationCoreResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CmdletizationCoreResources", typeof(CmdletizationCoreResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The value of the EnumName attribute doesn&apos;t translate to a valid C# identifier: {0}. Verify the EnumName attribute in the Cmdlet Definition XML, and then try again..
/// </summary>
internal static string EnumWriter_InvalidEnumName {
get {
return ResourceManager.GetString("EnumWriter_InvalidEnumName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value of the Name attribute is not a valid C# identifier: {0}. Verify the Name attribute in the Cmdlet Definition XML, and then try again..
/// </summary>
internal static string EnumWriter_InvalidValueName {
get {
return ResourceManager.GetString("EnumWriter_InvalidValueName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process Cmdlet Definition XML for the following file: {0}. {1}.
/// </summary>
internal static string ExportCimCommand_ErrorInCmdletizationXmlFile {
get {
return ResourceManager.GetString("ExportCimCommand_ErrorInCmdletizationXmlFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The remote computer returned a CDXML file that is not valid. The following cmdlet adapter is not supported for importing a CDXML module from a remote computer: {0}.
/// </summary>
internal static string ImportModule_UnsupportedCmdletAdapter {
get {
return ResourceManager.GetString("ImportModule_UnsupportedCmdletAdapter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} {1}.
/// </summary>
internal static string ScriptWriter_ConcatenationOfDeserializationExceptions {
get {
return ResourceManager.GetString("ScriptWriter_ConcatenationOfDeserializationExceptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} cmdlet defines the {1} parameter set more than once. Verify that the Cmdlet Definition XML does not have duplicate parameter set names and retry..
/// </summary>
internal static string ScriptWriter_DuplicateParameterSetInStaticCmdlet {
get {
return ResourceManager.GetString("ScriptWriter_DuplicateParameterSetInStaticCmdlet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Two cmdlet parameters defined within the {0} element have the same name: {1}. Resolve the conflict in the Cmdlet Definition XML and retry..
/// </summary>
internal static string ScriptWriter_DuplicateQueryParameterName {
get {
return ResourceManager.GetString("ScriptWriter_DuplicateQueryParameterName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the &lt;Enum EnumName=&quot;{0}&quot; ...&gt; element. {1}.
/// </summary>
internal static string ScriptWriter_InvalidEnum {
get {
return ResourceManager.GetString("ScriptWriter_InvalidEnum", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cmdlets over &apos;{0}&apos; class.
/// </summary>
internal static string ScriptWriter_ModuleDescription {
get {
return ResourceManager.GetString("ScriptWriter_ModuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the ObjectModelWrapper attribute. The {0} type defines multiple parameter sets. Verify that the Cmdlet Definition XML specifies a valid type in the ObjectModelWrapper attribute and retry..
/// </summary>
internal static string ScriptWriter_ObjectModelWrapperDefinesMultipleParameterSets {
get {
return ResourceManager.GetString("ScriptWriter_ObjectModelWrapperDefinesMultipleParameterSets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the ObjectModelWrapper attribute. The {0} type is an open generic type. Verify that the Cmdlet Definition XML specifies a valid type in the ObjectModelWrapper attribute and retry..
/// </summary>
internal static string ScriptWriter_ObjectModelWrapperIsStillGeneric {
get {
return ResourceManager.GetString("ScriptWriter_ObjectModelWrapperIsStillGeneric", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the ObjectModelWrapper attribute. The {0} type is not derived from the following class: {1}. Verify that the Cmdlet Definition XML specifies a valid type in the ObjectModelWrapper attribute and retry..
/// </summary>
internal static string ScriptWriter_ObjectModelWrapperNotDerivedFromObjectModelWrapper {
get {
return ResourceManager.GetString("ScriptWriter_ObjectModelWrapperNotDerivedFromObjectModelWrapper", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the ObjectModelWrapper attribute. The {0} type defines the {1} cmdlet parameter with a {2} attribute parameter that is ignored. Verify that the Cmdlet Definition XML specifies a valid type in the ObjectModelWrapper attribute and retry..
/// </summary>
internal static string ScriptWriter_ObjectModelWrapperUsesIgnoredParameterMetadata {
get {
return ResourceManager.GetString("ScriptWriter_ObjectModelWrapperUsesIgnoredParameterMetadata", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot define the {0} parameter for the {1} cmdlet. The parameter name is already defined by the {2} class. Change the name of the parameter in Cmdlet Definition XML and retry..
/// </summary>
internal static string ScriptWriter_ParameterNameConflictsWithCommonParameters {
get {
return ResourceManager.GetString("ScriptWriter_ParameterNameConflictsWithCommonParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot define the {0} parameter for the {1} cmdlet. The parameter name is already defined within the {2} XML element. Change the name of the parameter in the Cmdlet Definition XML, and then try again..
/// </summary>
internal static string ScriptWriter_ParameterNameConflictsWithQueryParameters {
get {
return ResourceManager.GetString("ScriptWriter_ParameterNameConflictsWithQueryParameters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
///&lt;!-- ##################################################################
///Copyright (c) Microsoft Corporation. All rights reserved.
///################################################################### --&gt;
///&lt;!DOCTYPE schema [
/// &lt;!ENTITY csharpIdentifierLetterCharacterRegex &quot;\p{Lu}\p{Ll}\p{Lt}\p{Lm}\p{Lo}\p{Nl}&quot;&gt;
/// &lt;!ENTITY csharpIdentifierFirstCharacterRegex &quot;&amp;csharpIdentifierLetterCharacterRegex;_&quot;&gt;
/// &lt;!ENTITY csharpIdentifierOtherCharacterRegex &quot;&amp;csharpIdentifierL [rest of string was truncated]&quot;;.
/// </summary>
internal static string Xml_cmdletsOverObjectsXsd {
get {
return ResourceManager.GetString("Xml_cmdletsOverObjectsXsd", resourceCulture);
}
}
}

View file

@ -0,0 +1,325 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CommandBaseStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CommandBaseStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CommandBaseStrings", typeof(CommandBaseStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cmdlets derived from PSCmdlet cannot be invoked directly. .
/// </summary>
internal static string CannotInvokePSCmdletsDirectly {
get {
return ResourceManager.GetString("CannotInvokePSCmdletsDirectly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Continue with all the steps of the operation..
/// </summary>
internal static string ContinueAllHelpMessage {
get {
return ResourceManager.GetString("ContinueAllHelpMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Yes to &amp;All.
/// </summary>
internal static string ContinueAllLabel {
get {
return ResourceManager.GetString("ContinueAllLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Continue with only the next step of the operation..
/// </summary>
internal static string ContinueOneHelpMessage {
get {
return ResourceManager.GetString("ContinueOneHelpMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;Yes.
/// </summary>
internal static string ContinueOneLabel {
get {
return ResourceManager.GetString("ContinueOneLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The running command stopped because the preference variable &quot;{0}&quot; or common parameter is set to Stop: {1}.
/// </summary>
internal static string ErrorPreferenceStop {
get {
return ResourceManager.GetString("ErrorPreferenceStop", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stop this command..
/// </summary>
internal static string HaltHelpMessage {
get {
return ResourceManager.GetString("HaltHelpMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;Halt Command.
/// </summary>
internal static string HaltLabel {
get {
return ResourceManager.GetString("HaltLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Confirm.
/// </summary>
internal static string InquireCaptionDefault {
get {
return ResourceManager.GetString("InquireCaptionDefault", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The running command stopped because the user interrupted the command..
/// </summary>
internal static string InquireCtrlC {
get {
return ResourceManager.GetString("InquireCtrlC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The running command stopped because the user selected the Stop option..
/// </summary>
internal static string InquireHalt {
get {
return ResourceManager.GetString("InquireHalt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to command &apos;{0}&apos;.
/// </summary>
internal static string ObsoleteCommand {
get {
return ResourceManager.GetString("ObsoleteCommand", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Total count: {0}.
/// </summary>
internal static string PagingSupportAccurateTotalCountTemplate {
get {
return ResourceManager.GetString("PagingSupportAccurateTotalCountTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Estimated total count: {0}.
/// </summary>
internal static string PagingSupportEstimatedTotalCountTemplate {
get {
return ResourceManager.GetString("PagingSupportEstimatedTotalCountTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown total count.
/// </summary>
internal static string PagingSupportUnknownTotalCountTemplate {
get {
return ResourceManager.GetString("PagingSupportUnknownTotalCountTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cmdlet &apos;{0}&apos; does not support parameter &apos;{1}&apos; in a remote session..
/// </summary>
internal static string ParameterNotValidInRemoteRunspace {
get {
return ResourceManager.GetString("ParameterNotValidInRemoteRunspace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pause the current pipeline and return to the command prompt. Type &quot;{0}&quot; to resume the pipeline..
/// </summary>
internal static string PauseHelpMessage {
get {
return ResourceManager.GetString("PauseHelpMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;Suspend.
/// </summary>
internal static string PauseLabel {
get {
return ResourceManager.GetString("PauseLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The running command stopped because the preference variable &quot;{0}&quot; or common parameter is set to the following value that is not valid: &quot;{1}&quot;..
/// </summary>
internal static string PreferenceInvalid {
get {
return ResourceManager.GetString("PreferenceInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The running command stopped because the preference variable &quot;{0}&quot; or common parameter is set to Stop..
/// </summary>
internal static string PreferenceStop {
get {
return ResourceManager.GetString("PreferenceStop", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Continue with this operation?.
/// </summary>
internal static string ShouldContinuePromptCaption {
get {
return ResourceManager.GetString("ShouldContinuePromptCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Performing the operation &quot;{0}&quot; on target &quot;{1}&quot;..
/// </summary>
internal static string ShouldProcessMessage {
get {
return ResourceManager.GetString("ShouldProcessMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to perform this action?
///{0}.
/// </summary>
internal static string ShouldProcessWarningFallback {
get {
return ResourceManager.GetString("ShouldProcessWarningFallback", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to What if: {0}.
/// </summary>
internal static string ShouldProcessWhatIfMessage {
get {
return ResourceManager.GetString("ShouldProcessWhatIfMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Skip this operation and all subsequent operations..
/// </summary>
internal static string SkipAllHelpMessage {
get {
return ResourceManager.GetString("SkipAllHelpMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No to A&amp;ll.
/// </summary>
internal static string SkipAllLabel {
get {
return ResourceManager.GetString("SkipAllLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Skip this operation and proceed with the next operation..
/// </summary>
internal static string SkipOneHelpMessage {
get {
return ResourceManager.GetString("SkipOneHelpMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &amp;No.
/// </summary>
internal static string SkipOneLabel {
get {
return ResourceManager.GetString("SkipOneLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} is obsolete. {1}.
/// </summary>
internal static string UseOfDeprecatedCommandWarning {
get {
return ResourceManager.GetString("UseOfDeprecatedCommandWarning", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,414 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ConsoleInfoErrorStrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ConsoleInfoErrorStrings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ConsoleInfoErrorStrings", typeof(ConsoleInfoErrorStrings).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Windows PowerShell {0} is not supported in the current console. Windows PowerShell {1} is supported in the current console..
/// </summary>
internal static string AddPSSnapInBadMonadVersion {
get {
return ResourceManager.GetString("AddPSSnapInBadMonadVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The console file name extension is not valid. A console file name extension must be psc1..
/// </summary>
internal static string BadConsoleExtension {
get {
return ResourceManager.GetString("BadConsoleExtension", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Required element &quot;ConsoleSchemaVersion&quot; in {0} is missing or incorrect..
/// </summary>
internal static string BadConsoleVersion {
get {
return ResourceManager.GetString("BadConsoleVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Incorrect Windows PowerShell version {0}. Windows PowerShell version {1} is supported on this computer..
/// </summary>
internal static string BadMonadVersion {
get {
return ResourceManager.GetString("BadMonadVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown element {0} found. &quot;{1}&quot; should have &quot;{2}&quot; and &quot;{3}&quot; elements only..
/// </summary>
internal static string BadXMLElementFound {
get {
return ResourceManager.GetString("BadXMLElementFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The console file is not valid. Multiple entries were found for the element PSConsoleFile. Only one entry is supported for this version..
/// </summary>
internal static string BadXMLFormat {
get {
return ResourceManager.GetString("BadXMLFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This is a system Windows PowerShell snap-in that is loaded by Windows PowerShell..
/// </summary>
internal static string CannotLoadDefault {
get {
return ResourceManager.GetString("CannotLoadDefault", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred while attempting to load the system Windows PowerShell snap-ins. Please contact Microsoft Customer Support Services..
/// </summary>
internal static string CannotLoadDefaults {
get {
return ResourceManager.GetString("CannotLoadDefaults", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot remove the Windows PowerShell snap-in {0} because it is a system snap-in. Verify the name of the snap-in that you want to remove, and then try again..
/// </summary>
internal static string CannotRemoveDefault {
get {
return ResourceManager.GetString("CannotRemoveDefault", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot remove the Windows PowerShell snap-in {0} because it is not loaded. Verify the name of the snap-in that you want to remove, and then try again..
/// </summary>
internal static string CannotRemovePSSnapIn {
get {
return ResourceManager.GetString("CannotRemovePSSnapIn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The cmdlet is not supported by the custom shell..
/// </summary>
internal static string CmdletNotAvailable {
get {
return ResourceManager.GetString("CmdletNotAvailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot save the file because the file name format is not valid. Specify a file name using the command: export-console -path..
/// </summary>
internal static string ConsoleCannotbeConvertedToString {
get {
return ResourceManager.GetString("ConsoleCannotbeConvertedToString", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot export to a console because no console is loaded or no name is specified..
/// </summary>
internal static string ConsoleFileNameNotResolved {
get {
return ResourceManager.GetString("ConsoleFileNameNotResolved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot export to this file because file {0} is read-only. Change the read-only attribute of the file to read-write, or export to a different file..
/// </summary>
internal static string ConsoleFileReadOnly {
get {
return ResourceManager.GetString("ConsoleFileReadOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot save the console file because wildcard characters were used. Specify a console file without wildcard characters..
/// </summary>
internal static string ConsoleFileWildCardsNotSupported {
get {
return ResourceManager.GetString("ConsoleFileWildCardsNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following errors occurred when loading console {0}: {1}.
/// </summary>
internal static string ConsoleLoadFailure {
get {
return ResourceManager.GetString("ConsoleLoadFailure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot set the ConsoleFileName variable to {0}. File {0} was saved..
/// </summary>
internal static string ConsoleVariableCannotBeSet {
get {
return ResourceManager.GetString("ConsoleVariableCannotBeSet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Save operation failed. Cannot remove the file {0}..
/// </summary>
internal static string ExportConsoleCannotDeleteFile {
get {
return ResourceManager.GetString("ExportConsoleCannotDeleteFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File {0} already exists and {1} was specified..
/// </summary>
internal static string FileExistsNoClobber {
get {
return ResourceManager.GetString("FileExistsNoClobber", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cmdlet {0}.
/// </summary>
internal static string FileNameCaptionForExportConsole {
get {
return ResourceManager.GetString("FileNameCaptionForExportConsole", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot save the specified file. The Save operation was canceled..
/// </summary>
internal static string FileNameNotResolved {
get {
return ResourceManager.GetString("FileNameNotResolved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Supply values for the following parameters:.
/// </summary>
internal static string FileNamePromptMessage {
get {
return ResourceManager.GetString("FileNamePromptMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The console file is not valid because the Windows PowerShell snap-in name is missing..
/// </summary>
internal static string IDNotFound {
get {
return ResourceManager.GetString("IDNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Required element &quot;PSConsoleFile&quot; in {0} is missing or incorrect..
/// </summary>
internal static string MonadConsoleNotFound {
get {
return ResourceManager.GetString("MonadConsoleNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Required element &quot;PSVersion&quot; in {0} is missing or incorrect..
/// </summary>
internal static string MonadVersionNotFound {
get {
return ResourceManager.GetString("MonadVersionNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The console file is not valid. Only one occurrence of the element &quot;{0}&quot; is allowed..
/// </summary>
internal static string MultipleMshSnapinsElementNotSupported {
get {
return ResourceManager.GetString("MultipleMshSnapinsElementNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The path {0} is not an absolute path..
/// </summary>
internal static string PathNotAbsolute {
get {
return ResourceManager.GetString("PathNotAbsolute", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot export a console file because no console file has been specified. Do you want to continue with the export operation?.
/// </summary>
internal static string PromptForExportConsole {
get {
return ResourceManager.GetString("PromptForExportConsole", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can only save a file when you are working in a file provider. The current provider &apos;{0}&apos; is not a file provider..
/// </summary>
internal static string ProviderNotSupported {
get {
return ResourceManager.GetString("ProviderNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add Windows PowerShell snap-in {0} because it is already added. Verify the name of the snap-in, and then try again..
/// </summary>
internal static string PSSnapInAlreadyExists {
get {
return ResourceManager.GetString("PSSnapInAlreadyExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Windows PowerShell snap-in module {0} does not have the required Windows PowerShell snap-in strong name {1}..
/// </summary>
internal static string PSSnapInAssemblyNameMismatch {
get {
return ResourceManager.GetString("PSSnapInAssemblyNameMismatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find any Windows PowerShell snap-in information for {0}..
/// </summary>
internal static string PSSnapInDoesNotExist {
get {
return ResourceManager.GetString("PSSnapInDoesNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The cmdlet &apos;{0}&apos; should not occur more than once in Windows PowerShell snap-in &apos;{1}&apos;..
/// </summary>
internal static string PSSnapInDuplicateCmdlets {
get {
return ResourceManager.GetString("PSSnapInDuplicateCmdlets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Windows PowerShell provider &apos;{0}&apos; should not occur more than once in Windows PowerShell snap-in &apos;{1}&apos;..
/// </summary>
internal static string PSSnapInDuplicateProviders {
get {
return ResourceManager.GetString("PSSnapInDuplicateProviders", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot load Windows PowerShell snap-in {0} because of the following error: {1}.
/// </summary>
internal static string PSSnapInLoadFailure {
get {
return ResourceManager.GetString("PSSnapInLoadFailure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Windows PowerShell snap-in &quot;{0}&quot; loaded with the following warnings: {1}.
/// </summary>
internal static string PSSnapInLoadWarning {
get {
return ResourceManager.GetString("PSSnapInLoadWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The console file is not valid because the element {0} is not valid..
/// </summary>
internal static string PSSnapInNotFound {
get {
return ResourceManager.GetString("PSSnapInNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot load the Windows PowerShell snap-in because an error occurred while reading the registry information for the snap-in..
/// </summary>
internal static string PSSnapInReadError {
get {
return ResourceManager.GetString("PSSnapInReadError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Attempting to save a console file with no name. Use Export-Console with the Path parameter to save the console file..
/// </summary>
internal static string SaveDefaultError {
get {
return ResourceManager.GetString("SaveDefaultError", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -0,0 +1,126 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CoreClrStubResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CoreClrStubResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CoreClrStubResources", typeof(CoreClrStubResources).GetTypeInfo().Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Environment variable name cannot contain equal character..
/// </summary>
internal static string ArgumentIllegalEnvVarName {
get {
return ResourceManager.GetString("ArgumentIllegalEnvVarName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Environment variable name or value is too long..
/// </summary>
internal static string ArgumentLongEnvVarValue {
get {
return ResourceManager.GetString("ArgumentLongEnvVarValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The first char in the string is the null character..
/// </summary>
internal static string ArgumentStringFirstCharIsZero {
get {
return ResourceManager.GetString("ArgumentStringFirstCharIsZero", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to String cannot be of zero length..
/// </summary>
internal static string ArgumentStringZeroLength {
get {
return ResourceManager.GetString("ArgumentStringZeroLength", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer name could not be obtained..
/// </summary>
internal static string CannotGetComputerName {
get {
return ResourceManager.GetString("CannotGetComputerName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Current user&apos;s domain name could not be obtained..
/// </summary>
internal static string CannotGetDomainName {
get {
return ResourceManager.GetString("CannotGetDomainName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown error &quot;{0}&quot;..
/// </summary>
internal static string UnknownErrorNumber {
get {
return ResourceManager.GetString("UnknownErrorNumber", resourceCulture);
}
}
}

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more