Metadata-Version: 2.4
Name: py-win-ban-hyperv
Version: 0.1.0
Summary: Used to disable Hyper-V virtualization on Windows systems
License-Expression: MIT
License-File: LICENSE
Author: GGN_2015
Author-email: neko@jlulug.org
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: py-admin-launch (>=0.1.3)
Description-Content-Type: text/markdown

# py-win-ban-hyperv

Used to disable Hyper-V virtualization on Windows systems.

## Installation

```powershell
pip install py-win-ban-hyperv
```

## Usage

CLI:

```powershell
# you need to reboot after running this script
python -m py_win_ban_hyperv

# schedule a reboot for you after done (in 30s)
python -m py_win_ban_hyperv --reboot
```

Python Code:
```python
from py_win_ban_hyperv import ban_hyper_v
ban_hyper_v(reboot=False) # or, reboot=True
```

