All Projects → billyhulbert → XboxUnattend

billyhulbert / XboxUnattend

Licence: other
Run unattended scripts at the highest privilege level.

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to XboxUnattend

xboxone-home-assistant
Control your Xbox One from your Home Assistant device.
Stars: ✭ 26 (+100%)
Mutual labels:  xbox-one
pac-man-emulator
🕹 An emulator for the Pac-Man arcade machine (Zilog Z80 CPU) for Win/Mac/*nix and Xbox One.
Stars: ✭ 20 (+53.85%)
Mutual labels:  xbox-one
QuantumTunnel
A Xbox One/Series Flash Dumper for SystemOS created in C#.
Stars: ✭ 19 (+46.15%)
Mutual labels:  xbox-one
xone
Linux kernel driver for Xbox One and Xbox Series X|S accessories
Stars: ✭ 636 (+4792.31%)
Mutual labels:  xbox-one
XB1ControllerBatteryIndicator
A tray application that shows a battery indicator for an Xbox-ish controller and gives a notification when the battery level drops to (almost) empty.
Stars: ✭ 536 (+4023.08%)
Mutual labels:  xbox-one

XboxUnattend

Run unattended scripts at the highest privilege level.

Notice

This no longer works correctly.

Prerequisites

  • CMake (3.8 or greater)
  • Visual Studio 2015/2017
  • Windows 10 SDK (Preferably latest)
  • Xbox One Devkit

Compiling

It's important to note that debug builds will fail most of the time so it is best to always build with the release configuration as well as x64.

Generate a solution:

mkdir Build
cd Build
cmake ..\ -G "Visual Studio 15 2017 Win64"

Building:

cmake --build . --config Release

Example of generating and building:

mkdir Build
cd Build
cmake ..\ -G "Visual Studio 15 2017 Win64"
cmake --build . --config Release

Usage

xboxunattend.exe -usb - Run an unattended script located on the root of USB device
xboxunattend.exe -script <Script File Path> - Run a script from file path

See: https://wiki.xosft.dev/setup-dev-mode

How does it work?

Every Xbox One development kits contain the same developer tools environment has features that are common regardless of capability certificate but some applications will hide certain features intended for other development kit types. The feature this tool focuses on is known as "Unattended Utilities". It's a WinRT interface that is intended for use by ERA kits for tools automation. While this feature is "hidden" by the Dev Home application and is not configured correctly via the Xbox Device Portal for UWA/SRA kits, we can still fortunately utilise this component manually via WinRT.

What is an 'unattended' script?

An unattended script is just a fancier name for a simple batch script.

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].