<a href="http://badge.fury.io/js/ember-cli-windows"><img src="https://badge.fury.io/js/ember-cli-windows.svg" alt="npm version" height="18"></a> <a href="https://david-dm.org/felixrieseberg/ember-cli-windows"><img src="https://david-dm.org/felixrieseberg/
npm install ember-cli-windowsember build and ember serve!Ember and Ember Cli are some of the best tools for the development of sophisticated web applications. A lot of its magic is in the automatic build tool, which also allows for incremental builds during development. Those builds can be a bit slow on Windows - correct configuration of Windows Defender and the Windows Search Index improve the speed dramatically. Made with :heart: by Microsoft.
To optimize speed for a project, use Powershell to run the following from the root of your Ember Cli project:
```
npm install ember-cli-windows -g
ember-cli-windows
#### Parameters and Configuration
Usage:
``
ember-cli-windows [options]
If you run ember-cli-windows without any parameters, it will first prompt for confirmation, and then automatically configure Windows Defender and Windows Search for the current directory.
Options:
``
-h, --help Output usage information
-V, --version Output the version number
-D, --defender Configure Windows Defender
-S, --search Configure Windows Search
-H, --headless Run without prompting for confirmation
Should you get a PSSecurityException, allow your PowerShell to execute the script by running the following command from an elevated PowerShell. To run PowerShell as Administrator, click Start, search for PowerShell, right-click PowerShell and select Run as Administrator.
```
Set-ExecutionPolicy Unrestricted -scope Process
ember-cli-windows