Powershell - Cmdlet Agregar historial
Cmdlet
Add-History El cmdlet se usa para agregar comandos en el historial actual.
En este ejemplo, vemos el cmdlet Add-History en acción.
Ejemplo
En este ejemplo, agregaremos los primeros cinco comandos del historial al historial actual nuevamente.
> get-history
Id CommandLine
-- -----------
13 clear-history
14 get-history
15 dir
16 dir
17 dir
18 dir
> Get-history -count 5 | Add-history
Ahora obtenga el historial nuevamente para ver el efecto de Add-history.
> Get-history
Id CommandLine
-- -----------
13 clear-history
14 get-history
15 dir
16 dir
17 dir
18 dir
19 get-history
20 get-history -count 5 | Add-history
21 dir
22 dir
23 dir
24 get-history
25 get-history -count 5 | Add-history