npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

autounattend

v1.1.0

Published

[autounattend](https://github.com/131/autounattend) is a CLI tool that help you build autounattend.xml files.

Downloads

5

Readme

autounattend is a CLI tool that help you build autounattend.xml files.

NPM version License Code style

Motivation

Writing dynamic autounattend.xml files can be tedious. This tool simplifies the process by requiring you to write a meta, simplified config.yml file that describes your needs. Additionally, anything but trivial scripting might require external ps1/cmd scripts that have to be referenced from your autounattend.xml. However, depending on your provisioning pattern (e.g., USB stick / Terraform cd_contents provisioner), finding the "provisioning drive" can be a complex task.

The simplest macro, $drive=([System.IO.DriveInfo]::getdrives() | Where-Object { Test-Path -Path ($_.Name+"\\autounattend.xml")} | Select-Object -first 1).Name;, can make every command line complex. Furthermore, I wanted to have standalone and portable autounattended.xml files.

This script inlines all external script files you might want to reference into base64-encoded metadata and makes them available directly in the autounattended.xml. The script will use a simple xml query introspecting lookup and Invoke-Expression. Therefore, the generated autounattended.xml file is portable and stanalone.

config.yml + scripts/folder => cnyks autounattend => :boom:boom:sparkles: standalone autounattend.xml :boom:boom:sparkles:

Advanced

You might want to use the UseConfigurationSet macro, which copies whatever file you have in your provisioning folder into a %windows% subfolder and makes it available behind the %configurationset% macro. Again, autounattend.js inlines any script you might want to use, so there should be no requirements for this.

Usage

# Write config.yml file.(see syntax template below)
npm install -g cnyks autounattend

cnyks autounattend config.yml --ir://run=generate
# Enjoy

Example configuration

hostname: makeitshort
windows:
  product_key: $PRODUCT_KEY
administrator:
  password: $PASSWORD

hostcommands:
  - dism.exe /online /Enable-Feature /FeatureName:Containers /All /norestart

usercommands:
  - cmd.exe /c "echo hi >> c:\\traces"

  - type: powershell
    file: scripts/enable-rdp.ps1

  - type: powershell
    file: scripts/enable-winrm.ps1

  - type: powershell
    command: |
      Set-MpPreference -DisableArchiveScanning 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableArchiveScanning 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableBehaviorMonitoring 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableIntrusionPreventionSystem 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableIOAVProtection 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableRemovableDriveScanning 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableBlockAtFirstSeen 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableScanningMappedNetworkDrivesForFullScan 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableScanningNetworkFiles 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableScriptScanning 1 -ErrorAction SilentlyContinue;
      Set-MpPreference -DisableRealtimeMonitoring 1 -ErrorAction SilentlyContinue;

Credits