An open API service indexing awesome lists of open source software.

https://github.com/lostmsu/temporaryuser

create temporary Windows users
https://github.com/lostmsu/temporaryuser

Last synced: over 1 year ago
JSON representation

create temporary Windows users

Awesome Lists containing this project

README

          

[![NuGet](https://img.shields.io/nuget/v/TemporaryUser.svg)](https://www.nuget.org/packages/TemporaryUser/)

## Usage

```csharp
using var user = new TemporaryUser(name: "TempUser", password: "passw");
File.WriteAllText(path: Path.Join(user.ProfilePath.FullName, "readme.txt"),
contents: "Hello, world!");
```