Generated docs from job=generate-docs branch=master [ci skip]
This commit is contained in:
@@ -7921,9 +7921,6 @@ defense-evasion:
|
||||
command: 'Get-ChildItem #{file_path} | % { $_.CreationTime = "#{target_date_time}"
|
||||
}
|
||||
|
||||
'
|
||||
cleanup_command: 'Remove-Item #{file_path} -Force -ErrorAction Ignore
|
||||
|
||||
'
|
||||
name: powershell
|
||||
- name: Windows - Modify file last modified timestamp with PowerShell
|
||||
@@ -7958,9 +7955,6 @@ defense-evasion:
|
||||
command: 'Get-ChildItem #{file_path} | % { $_.LastWriteTime = "#{target_date_time}"
|
||||
}
|
||||
|
||||
'
|
||||
cleanup_command: 'Remove-Item #{file_path} -Force -ErrorAction Ignore
|
||||
|
||||
'
|
||||
name: powershell
|
||||
- name: Windows - Modify file last access timestamp with PowerShell
|
||||
@@ -7995,9 +7989,6 @@ defense-evasion:
|
||||
command: 'Get-ChildItem #{file_path} | % { $_.LastAccessTime = "#{target_date_time}"
|
||||
}
|
||||
|
||||
'
|
||||
cleanup_command: 'Remove-Item #{file_path} -Force -ErrorAction Ignore
|
||||
|
||||
'
|
||||
name: powershell
|
||||
- name: Windows - Timestomp a File
|
||||
|
||||
@@ -194,10 +194,6 @@ To verify execution, use File Explorer to view the Properties of the file and ob
|
||||
Get-ChildItem #{file_path} | % { $_.CreationTime = "#{target_date_time}" }
|
||||
```
|
||||
|
||||
#### Cleanup Commands:
|
||||
```powershell
|
||||
Remove-Item #{file_path} -Force -ErrorAction Ignore
|
||||
```
|
||||
|
||||
|
||||
|
||||
@@ -246,10 +242,6 @@ To verify execution, use File Explorer to view the Properties of the file and ob
|
||||
Get-ChildItem #{file_path} | % { $_.LastWriteTime = "#{target_date_time}" }
|
||||
```
|
||||
|
||||
#### Cleanup Commands:
|
||||
```powershell
|
||||
Remove-Item #{file_path} -Force -ErrorAction Ignore
|
||||
```
|
||||
|
||||
|
||||
|
||||
@@ -298,10 +290,6 @@ To verify execution, use File Explorer to view the Properties of the file and ob
|
||||
Get-ChildItem #{file_path} | % { $_.LastAccessTime = "#{target_date_time}" }
|
||||
```
|
||||
|
||||
#### Cleanup Commands:
|
||||
```powershell
|
||||
Remove-Item #{file_path} -Force -ErrorAction Ignore
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user