2022-10-21 17:16:00 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home ](./index.md ) > [bitburner ](./bitburner.md ) > [NS ](./bitburner.ns.md ) > [nuke ](./bitburner.ns.nuke.md )
## NS.nuke() method
Runs NUKE.exe on a server.
2023-02-11 19:18:50 +01:00
**Signature:**
2022-10-21 17:16:00 +02:00
```typescript
nuke(host: string): void;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| host | string | Hostname of the target server. |
2023-02-11 19:18:50 +01:00
**Returns:**
2022-10-21 17:16:00 +02:00
void
## Remarks
RAM cost: 0.05 GB
2022-11-20 18:07:22 +01:00
Running NUKE.exe on a target server gives you root access which means you can execute scripts on said server. NUKE.exe must exist on your home computer.
2022-10-21 17:16:00 +02:00
2023-04-28 20:19:30 +02:00
## Example
2022-10-21 17:16:00 +02:00
2023-04-28 20:19:30 +02:00
```js
2022-10-21 17:16:00 +02:00
ns.nuke("foodnstuff");
```