├── .coveragerc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── src └── pypsrp │ ├── __init__.py │ ├── _utils.py │ ├── client.py │ ├── complex_objects.py │ ├── encryption.py │ ├── exceptions.py │ ├── host.py │ ├── messages.py │ ├── negotiate.py │ ├── powershell.py │ ├── pwsh_scripts │ ├── __init__.py │ ├── copy.ps1 │ └── fetch.ps1 │ ├── py.typed │ ├── serializer.py │ ├── shell.py │ └── wsman.py └── tests └── tests_pypsrp ├── __init__.py ├── conftest.py ├── data ├── test_sanitise_clixml_with_error.xml └── test_sanitise_clixml_with_no_errors.xml ├── responses ├── _template.yml ├── test_client_copy_expand_vars.yml ├── test_client_copy_file.yml ├── test_client_copy_file_empty.yml ├── test_client_copy_file_failure.yml ├── test_client_copy_file_really_large.yml ├── test_client_copy_file_warning.yml ├── test_client_execute_cmd.yml ├── test_client_execute_cmd_environment.yml ├── test_client_execute_ps.yml ├── test_client_execute_ps_environment.yml ├── test_client_execute_ps_failure.yml ├── test_client_fetch_file.yml ├── test_client_fetch_file_expand_vars.yml ├── test_client_fetch_file_fail_dir.yml ├── test_client_fetch_file_fail_missing.yml ├── test_client_fetch_file_hash_mismatch.yml ├── test_psrp_application_args.yml ├── test_psrp_clear_commands.yml ├── test_psrp_disconnect_runspaces.yml ├── test_psrp_disconnected_commands.yml ├── test_psrp_error_failed.yml ├── test_psrp_get_command_metadata.yml ├── test_psrp_key_exchange_timeout.yml ├── test_psrp_long_running_cmdlet.yml ├── test_psrp_merge_commands.yml ├── test_psrp_multiple_commands.yml ├── test_psrp_multiple_invocations.yml ├── test_psrp_nested_command.yml ├── test_psrp_no_profile.yml ├── test_psrp_open_runspace.yml ├── test_psrp_pshost_methods.yml ├── test_psrp_pshost_raw_ui_mocked_methods.yml ├── test_psrp_pshost_ui_mocked_methods.yml ├── test_psrp_receive_failure.yml ├── test_psrp_reset_runspace_state.yml ├── test_psrp_reset_runspace_state_fail.yml ├── test_psrp_run_protocol_version_2.1.yml ├── test_psrp_run_protocol_version_2.2.yml ├── test_psrp_run_protocol_version_2.3.yml ├── test_psrp_set_runspaces.yml ├── test_psrp_small_msg_size.yml ├── test_psrp_stream_no_output_invocation.yml ├── test_psrp_stream_output_invocation.yml ├── test_psrp_with_history.yml ├── test_psrp_with_input.yml ├── test_psrp_with_jea_configuration.yml ├── test_psrp_with_no_history.yml ├── test_winrs_bad_cmd_id.yml ├── test_winrs_environment.yml ├── test_winrs_extra_opts.yml ├── test_winrs_fail_poll_process.yml ├── test_winrs_no_cmd_shell.yml ├── test_winrs_noprofile.yml ├── test_winrs_open_already_opened.yml ├── test_winrs_operation_timeout.yml ├── test_winrs_send.yml ├── test_winrs_standard.yml ├── test_winrs_stderr_rc.yml ├── test_winrs_unicode.yml ├── test_wsman_update_envelope_size_150.yml ├── test_wsman_update_envelope_size_4096.yml └── test_wsman_update_envelope_size_500.yml ├── test_client.py ├── test_complex_objects.py ├── test_encryption.py ├── test_exceptions.py ├── test_host.py ├── test_integration.py ├── test_messages.py ├── test_negotiate.py ├── test_powershell.py ├── test_serializer.py ├── test_shell.py ├── test_utils.py └── test_wsman.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pypsrp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/__init__.py -------------------------------------------------------------------------------- /src/pypsrp/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/_utils.py -------------------------------------------------------------------------------- /src/pypsrp/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/client.py -------------------------------------------------------------------------------- /src/pypsrp/complex_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/complex_objects.py -------------------------------------------------------------------------------- /src/pypsrp/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/encryption.py -------------------------------------------------------------------------------- /src/pypsrp/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/exceptions.py -------------------------------------------------------------------------------- /src/pypsrp/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/host.py -------------------------------------------------------------------------------- /src/pypsrp/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/messages.py -------------------------------------------------------------------------------- /src/pypsrp/negotiate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/negotiate.py -------------------------------------------------------------------------------- /src/pypsrp/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/powershell.py -------------------------------------------------------------------------------- /src/pypsrp/pwsh_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/pwsh_scripts/__init__.py -------------------------------------------------------------------------------- /src/pypsrp/pwsh_scripts/copy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/pwsh_scripts/copy.ps1 -------------------------------------------------------------------------------- /src/pypsrp/pwsh_scripts/fetch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/pwsh_scripts/fetch.ps1 -------------------------------------------------------------------------------- /src/pypsrp/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pypsrp/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/serializer.py -------------------------------------------------------------------------------- /src/pypsrp/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/shell.py -------------------------------------------------------------------------------- /src/pypsrp/wsman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/src/pypsrp/wsman.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/__init__.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/conftest.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/data/test_sanitise_clixml_with_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/data/test_sanitise_clixml_with_error.xml -------------------------------------------------------------------------------- /tests/tests_pypsrp/data/test_sanitise_clixml_with_no_errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/data/test_sanitise_clixml_with_no_errors.xml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/_template.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_copy_expand_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_copy_expand_vars.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_copy_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_copy_file.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_copy_file_empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_copy_file_empty.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_copy_file_failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_copy_file_failure.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_copy_file_really_large.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_copy_file_really_large.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_copy_file_warning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_copy_file_warning.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_execute_cmd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_execute_cmd.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_execute_cmd_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_execute_cmd_environment.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_execute_ps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_execute_ps.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_execute_ps_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_execute_ps_environment.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_execute_ps_failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_execute_ps_failure.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_fetch_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_fetch_file.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_fetch_file_expand_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_fetch_file_expand_vars.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_fetch_file_fail_dir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_fetch_file_fail_dir.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_fetch_file_fail_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_fetch_file_fail_missing.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_client_fetch_file_hash_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_client_fetch_file_hash_mismatch.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_application_args.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_application_args.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_clear_commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_clear_commands.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_disconnect_runspaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_disconnect_runspaces.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_disconnected_commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_disconnected_commands.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_error_failed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_error_failed.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_get_command_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_get_command_metadata.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_key_exchange_timeout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_key_exchange_timeout.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_long_running_cmdlet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_long_running_cmdlet.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_merge_commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_merge_commands.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_multiple_commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_multiple_commands.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_multiple_invocations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_multiple_invocations.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_nested_command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_nested_command.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_no_profile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_no_profile.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_open_runspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_open_runspace.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_pshost_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_pshost_methods.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_pshost_raw_ui_mocked_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_pshost_raw_ui_mocked_methods.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_pshost_ui_mocked_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_pshost_ui_mocked_methods.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_receive_failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_receive_failure.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_reset_runspace_state.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_reset_runspace_state.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_reset_runspace_state_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_reset_runspace_state_fail.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_run_protocol_version_2.1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_run_protocol_version_2.1.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_run_protocol_version_2.2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_run_protocol_version_2.2.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_run_protocol_version_2.3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_run_protocol_version_2.3.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_set_runspaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_set_runspaces.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_small_msg_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_small_msg_size.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_stream_no_output_invocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_stream_no_output_invocation.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_stream_output_invocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_stream_output_invocation.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_with_history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_with_history.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_with_input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_with_input.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_with_jea_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_with_jea_configuration.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_psrp_with_no_history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_psrp_with_no_history.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_bad_cmd_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_bad_cmd_id.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_environment.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_extra_opts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_extra_opts.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_fail_poll_process.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_fail_poll_process.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_no_cmd_shell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_no_cmd_shell.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_noprofile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_noprofile.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_open_already_opened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_open_already_opened.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_operation_timeout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_operation_timeout.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_send.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_standard.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_stderr_rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_stderr_rc.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_winrs_unicode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_winrs_unicode.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_wsman_update_envelope_size_150.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_wsman_update_envelope_size_150.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_wsman_update_envelope_size_4096.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_wsman_update_envelope_size_4096.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/responses/test_wsman_update_envelope_size_500.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/responses/test_wsman_update_envelope_size_500.yml -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_client.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_complex_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_complex_objects.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_encryption.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_exceptions.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_host.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_integration.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_messages.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_negotiate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_negotiate.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_powershell.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_serializer.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_shell.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_utils.py -------------------------------------------------------------------------------- /tests/tests_pypsrp/test_wsman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jborean93/pypsrp/HEAD/tests/tests_pypsrp/test_wsman.py --------------------------------------------------------------------------------