Assembly Editor GUI Changes

This commit is contained in:
2025-10-03 05:29:55 -06:00
parent 2005bc3d4e
commit 77dac5dfd9
4 changed files with 64 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
{
"version": 1,
"name": "Write Canary to C Drive Root",
"description": "Write a basic canary file to the C:\\ drive to determine if SYSTEM-level access is functional within the script engine.",
"category": "script",
"type": "ansible",
"script": "---\n- name: Create Canary.txt on local Windows machine\n hosts: localhost\n connection: local\n gather_facts: no\n\n tasks:\n - name: Write Canary.txt to C:\\\n ansible.windows.win_copy:\n content: \"This is a canary file created by Ansible.\"\n dest: C:\\Canary.txt\n",
"timeout_seconds": 3600,
"sites": {
"mode": "all",
"values": []
},
"variables": [],
"files": []
}

View File

@@ -1,11 +0,0 @@
---
- name: Create Canary.txt on local Windows machine
hosts: localhost
connection: local
gather_facts: no
tasks:
- name: Write Canary.txt to C:\
ansible.windows.win_copy:
content: "This is a canary file created by Ansible."
dest: C:\Canary.txt