Nueva técnica para hackear dispositivos móviles mediante comandos de voz ocultos en vídeos de Youtube
Y no necesariamente tiene que reproducirlo la víctima, basta con que reciba el sonido desde otro ordenador, televisión inteligente, teléfono, tablet, etc., los comandos ocultos serán recibidos por los asistentes Google Now! o Siri que los filtrarán del ruido ambiente y los ejecutarán.
Los investigadores publicaron los detalles de la técnica en un artículo titulado "Hidden Voice Commands"
"En este paper exploramos cómo pueden ser atacados con comandos de voz ocultos que son ininteligibles para los oídos humanos pero interpretados como comandos por algunos dispositivos".
Los investigadores han publicado un vídeo PoC del ataque en caja negra que se lleva a cabo con presencia de ruido de fondo y el teléfono objetivo a una distancia de varios metros de los altavoces utilizados para reproducir el audio/ataque.
Los atacantes pueden ocultar varios tipos de comandos en los videos, incluyendo las instrucciones para descargar e instalar un código malicioso desde un host determinado.
Los investigadores también sugieren una serie de contramedidas, incluyendo una notificación cada vez que un comando de voz es recibido por el móvil o la adopción de un sistema de pregunta-respuesta verbal.
Para más detalles técnicos os recomiendo echar un vistazo a la página oficial del proyecto: http://www.hiddenvoicecommands.com/
Fuente: http://www.hackplayers.com/2016/07/hackean-moviles-comandos-voz-youtube.html
Inyección de comandos en variables de entorno de ficheros batch
En Windows el caracter & es interpretado como un separador de comandos, por lo que para ejecutar el segundo comando sólo hace falta mostrar una variable de entorno o asignar el valor de una variable a otra:
En sí mismo esto no se considera un exploit porque está claro que si pueden modificar las variables de entorno de tu servidor ya estás jodido. Pero, ¿y si existe una tarea programada que ejecuta un bat con un ECHO %CD% o algo como SET CurrentPath=%CD%?
Si lo piensas, los administradores suelen programar la ejecución de ficheros .bat en servidores de ficheros para realizar algún tipo de mantenimiento, por ejemplo para comprobar los permisos de todos los sub-directorios o para ver el tamaño de cada uno de ellos. Entonces un usuario con privilegios limitados simplemente puede crear un directorio:
\fileServer1\Share\user1\T&malware
Y crear un fichero “malware.bat” que contiene:
Net localgroup administrators domain\user1 /add
O
Net user administrator newpassword123!!
Después simplemente tiene que esperar a que el fichero batch corra con permisos elevados y haga uso de la variable %CD% sobre el nombre del directorio...
Fuente: Command-injection vulnerability for COMMAND-Shell Scripts
http://www.hackplayers.com/2014/10/inyeccion-de-comandos-en-variables-en-batch.html
# yowsup-cli: Send Whatsapp messages from command-line
#apt-get install python python-dateutil python-argparse#wget https://github.com/tgalal/yowsup/archive/master.zip#unzip master.zip#cd yowsup-master/src#cp config.example yowsup-cli.config#cat yowsup-cli.config#chmod +x yowsup-cli#./yowsup-cli --requestcode sms --config yowsup-cli.config#./yowsup-cli --register 123-456 --config yowsup-cli.config#cat yowsup-cli.config
Send a message
# ./yowsup-cli --send 34111222333 "Test message" --wait --config yowsup-cli.config
Receive messages
# ./yowsup-cli --listen --autoack --keepalive --config yowsup-cli.config
Interactive: Send and receive messages
#./yowsup-cli --interactive 34111222333 --wait --autoack --keepalive --config yowsup-cli.config/unavailable
References
https://github.com/tgalal/yowsup
http://www.fonyou.es
http://hacktracking.blogspot.com/2013/02/yowsup-cli-send-whatsapp-messages-from.html
Securizando un entorno de máquinas virtuales con Virtualbox
- modprobe tun #Cargaremos el driver "tun"
- tunctl -t tap0 #Creamos el interfaz tap0
- ifconfig tap0 192.168.5.1 netmask 255.255.255.0 up #Asignamos direccionamiento de red al interfaz y lo levantamos
En el caso de 192.168.5.0/30 por ejemplo, tendríamos la 192.168.5.0 como dirección de red, la 192.168.5.3 como dirección de broadcast y la 192.168.5.1 y 192.168.5.2 como direcciones asignables. Si os liáis con el subnetting, podéis usar este enlace para el cálculo online de direcciones IP
De vosotros dependerá securizar convenientemente esa máquina física, o incluso crear una máquina virtual nueva, que sea la que haga las labores de firewall, con un interfaz de red asignado (bridge) a cada una de las nuevas redes que hemos creado.
Así, la máquina física, si logramos que no tenga servicios de ningún tipo hacia el exterior, será un bastión muy difícil de vulnerar.
COMANDOS EN WINDOWS
- WINDOWS XP (Cualquier Versión)
- WINDOWS VISTA (Cualquier Versión)
- WINDOWS 7 (Cualquier Versión)
- WINDOWS SERVER 2003 (Cualquier Versión)
- WINDOWS SERVER 2008 (Cualquier Versión)
COMANDO PARA APAGAR WINDOWS:
shutdown -s -f -t 0
COMANDO PARA REINICIAR WINDOWS:
shutdown -r -f -t 0
COMANDO PARA CERRAR SESION:
shutdown -l -f -t 0
ó
logoff
COMANDO PARA BLOQUEAR SESION:
rundll32.exe user32.dll,LockWorkStation
ó
Win+L
COMANDO PARA SUSPENDER WINDOWS:
rundll32.exe PowrProf.dll, SetSuspendState
Nota: En el comando "shutdown" el valor "0" se puede sustituir por el número de segundos que queremos que tarde en ejecutar el comando. Para anular el comando: "shutdown -a"
Fuente: http://trucos-masm2000.blogspot.com/2010/01/apagar-reiniciar-cerrar-sesion-bloquear.html
Windows XP Command Line Syntax
informacion de las sintaxys de la CMD centrada mas a lo que es XP
Parameters Command Line Parameters %1 %~f1informacion completa: http://www.ss64.com/nt/
Variables Create/read environment variables
Redirection Spooling output to a file, piping input
AND/OR Logic Conditional Execution (If-Then-Else)
Loops Loops and SubroutinesServices List of Windows XP Services
Evaluating expressions
Using brackets to Group and expand expressions
Delayed Expansion Manageand text
SET /A Environment variable arithmetic
VarSubstring Extract part of a variable (substring)
VarSearch Search & replace part of a variable
Escape chars, delimiters and quotes
Wildcards Match multiple files
Batch Files
DateMath.zip Add or subtract days from any date
GetDate.cmd Get todays date (any region, any OS)
GetTime.cmd Get the time now
datetime.vbs Get Date, Time and daylight savings
deQuote Remove quotes from a string
DelOlder.cmd Delete files more than n days old
StampMe.cmd Rename a file with the date/time
StampMS.cmd Rename with date/time (milliseconds)
Which.cmd Display full path to any command
Reference/How to
Slow Browsing Speed up network browsing
Printing Printer connections and print drivers
Qchange Script to change Printer connections
Permissions Local vs Global workgroups
Long Filenames NTFS filename issues
WorkGroups Built-In Users and Security Groups
autoexec Run commands at startup
Recovery The Recovery Console
WinXP Registry User interface settings
web : http://www.ss64.com/index.html
tambien hay otros comandos bajo consola como Bash , Power Shell , sql y bue mirenlos xD
fuente:http://darioxhcx.blogspot.com/2009/02/windows-xp-command-line-syntax.html
Mas comandos para DOS
PD: para los que han tratado de ejecutar el inuse.exe les tengo la solucion pero para la proxima sera...
1. Mapa de Caracteres = charmap.exe ( Para Modificar Caracteres Indefinidos con sus Fontes)
2. Limpieza de Disco = cleanmgr.exe
3. Area de Transferencia = clipbrd.exe ( Verifica que está en el clipboard, o que está copiado en la Memória Temporária)
4. Dr Watson = drwtsn32.exe ( Herramienta àra Solucionar Problemas )
5. DirectX diagnóstico = diag.exe (Testeador de DirectX, Video & Placas de Sonido )
6. Editor de Cuentas Privadas = eudcedit.exe ( Pude Crear o Modificar Cuentas ( Incluyendo la Administrador ))
7. IExpress Wizard = iexpress.exe ( Compactador de Archivos , WinRAR ou WinZip No es Necesario Tenerlos )
8. Mcft Synchronization Manager = mobsync.exe ( Permite La Sincronizacion de Archivos en Redes Locales )
9. Windows Media Player 5.1 = mplay32.exe (Abre una V5.1 o Mayor )
10. ODBC Data Source Administrator = odbcad32.exe ( Base de Datos )
11. Gerenciador de Objetos = packager.exe
12. System Monitor = perfmon.exe ( Todo o Lo que Usted Quiera Saber de Performan de su PC, para usuários avanzados )
13. Gerenciador de Programas = progman.exe
14. Remote Access phone book = rasphone.exe
15. Registry Editor = regedt32.exe ou regedit.exe ( Para Ver / Modificar El Registro de Windows )
16. Services = services.msc ( Inicia, Para una Configuracion de Servicios de Windows )
17. Network shared folder wizard = shrpubw.exe ( Cree Archivos Compatibles en Red )
18. File signature verification tool = sigverif.exe ( Verifica el Estado de un Archivo )
19. Volume Control = sndvol32.exe ( Control de Volumen )
20. System Configuration Editor = sysedit.exe ( Modifique System.ini y Win.ini )
21. Syskey = syskey.exe ( Protege Bases de Datos de Cuentas de Windows - Use Con Cuidado )
22. Mcft Telnet Client = telnet.exe ( Publicar Publicamente Telnet en DOS )
23. Driver Verifier Manager = verifier.exe ( Para Monitorear la Actividad de Driver´s )
24. Windows for Workgroups Chat = winchat.exe ( Para Crear un Verdadero Chat en la Red Local )
25. System configuration = msconfig.exe ( Para Habilitar / Desabilitar Programas que se Inicien con Windows )
26. Diretivas de grupo - gpedit.msc ( Permite Editar Objetos de Directiva de Grupo )
Saludos y proximamente empezare con los laboratorios que prometi :D
mas comandos dos
Hola bueno existen comandos DOS comunes como el dir xD voy a mostrar mas comandos para tener en cuenta a la hora de usar este SO:
Inicio: Ejecutar: (escribimos “cmd”) y se nos abrira la consola del MS DOS.
Para los que quieren saber mas del DOS …
ANSI.SYS : Carga el código ANSI. Interviene en el Config.Sys
APPEND : Indica al sistema en qué directorios debe buscar los archivos de datos o de comandos. Este comando es relativamente reciente en el DOS y complementa al comando PATH, que sólo se ocupa de archivos de comandos.
ASSIGN : Envía el comando direccionado en un disco hacia otro disco; este último reemplaza al primero. Ya no existe en el DOS 6.
BACKUP : Realiza una copia de seguridad de los archivos de un disco en uno 0 varios discos, mostrando mientras tanto su nombre en pantalla. La restauración de los archivos se hace con la orden de sentido contrario, RESTORE. El Backup ya no existe en el DOS 6, lo cual es una bendición porque este comando era uno de los más difíciles de manejar.
BASIC : Llama al lenguaje Basic IBM en los DOS IBM. Se trata del lenguaje de programación más simple que existe.
BAT : Extensión específica para el nombre de los archivos de procedimientos, que disponen de toda una gama de comandos propios. Uno de los más conocidos es el archivo AUTOEXEC.BAT, que se ejecuta automáticamente cuando usted pone su computadora en funcionamiento.
BREAK : Activa o desactiva la posibilidad de realizar una interrupción con Control + Pausa, que permite salir de una secuencia.
BUFFERS - Comando para el config.sys que determina la capacidad del búfer para el disco.
CALL - En un archivo .bat, llama a otro .bat como un subprograma.
CD - Cambio de directorio; su nombre completo es CHDIR.
CHCP - Selección de las tablas de códigos.
CHDIR : Cambio de directorio, cuyo nombre abreviado es CD. Adopte CD en lugar de CHDIR si quiere evitar presionar tres teclas en el teclado.
CHKDSK : Controla un disco y provee información sobre su capacidad, su estado, los directorios, los archivos, la FAT, etc. Ha sido reemplazado por SCANDISK en los DOS 6.2.
CHKSTATE.SYS : Una novedad del DOS 6. Usado por el programa MemMaker para optimizar la memoria.
CHOICE : Una novedad del DOS. 6. Le pide al usuario que efectúe una selección en una secuencia «batch».
CLS : Simplemente borra la pantalla, sin cambiar ninguna otra cosa. Es un comando pequeño e interesante que conviene recordar.
COMMAND - Llama a un procesador secundario de comandos, o reinstala el procesador de comandos COMMAND.COM del DOS.
CONFIG.SYS : Archivo de configuración que dispone de instrucciones propias. Este archivo se ejecuta automáticamente cada vez que se pone en funcionamiento la computadora.
COUNTRY : Nacionaliza el sistema, adaptándolo al país.
DATE : Muestra en pantalla y modifica la fecha utilizada por el sistema; la nueva, fecha introducida se graba en las memorias permanentes.
DBLSPACE : Compacta el disco duro, duplicando aproximadamente su capacidad. La compresión puede variar normalmente de 1,7 a más de 10, según el tipo de archivo. Este comando ha sido reemplazado por DRIVESPACE a partir del DOS 6.22.
DBLSPACE.SYS : Una novedad del DOS 6. Determina la posición final del archivo dblspace.bin.
DEBUG : Lanza el programa de “debugging’ (eliminación de errores). Debug está reservado a los expertos.
DEFRAG : Una novedad del DOS 6. Desfragmenta los archivos en el disco duro para mejorar la velocidad y la seguridad.
DEL : Destruye uno o varios archivos en el disco (actúa como el comando ERASE).
DELOLDOS : Suprime la puesta en reserva de un DOS antiguo.
DELTREE : Una novedad dei DOS 6. Suprime un directorio y todo lo que contiene, incluyendo los subdirectorios, en una sola operación.
DEVICE : Instala un driver de periférico, por medio del config.sys.
DEVICEHIGH : Carga un administrador en memoria superior, por encima de los primeros 640 KB.
DISKCOMP : Compara el contenido total, pista por pista y sector por sector, de dos disquetes del mismo tipo.
DISKCOPY : Copia de modo idéntico el contenido de un disquete fuente en un disquete destinatario rigurosamente del mismo formato, formateando previamente este último y haciéndolo sobre el modelo del disquete fuente si es necesario.
DISPLAY.SYS : Se utiliza para conmutar las tablas de códigos, vía el config.sys.
DOS : Establece un vínculo entre la memoria convencional y la memoria superior a través del config.sys.
DOSKEY : Instala el programa de memorización y de llamado de los comandos instalados anteriormente. De esta manera, se evita tener que volver a escribirlos.
DOSSHELL : Llama a la superestructura de diálogo del DOS. Este dos shell ha sido
DRIVER.SYS : Administra las disqueteras, a través del Config.Sys.
DRIVPARM : Define los parámetros de periféricos en modo bloque, a través del Config.Sys.
DRIVESPACE : Reemplaza a DBLSPACE a partir del DOS 6.22, con las mismas funciones.
ECHO : Vuelve a mostrar en pantalla o no, en eco, los comandos ejecutados en un archivo .BAT, según se ponga o no en servicio este eco, usando ON u OFF respectivamente. Permite introducir un mensaje que será mostrado en pantalla en todos los casos.
EMM386 : Sirve de soporte a la memoria expandida.
EMM386.EXE : Simula la memoria expandida en la memoria extendida, a través del Config.sys.
ERASE : Destruye uno o varios archivos del disco (y actúa como el comando DEL). Opte por DEL ya que se escribe más rápido.
ERROLEVEL : Código de errores para archivos .BAT Otra noción más para expertos.
EXE2BIN : Convierte el formato .EXE en .BIN o .COM. Este comando, que no existe más en los DOS 6, está destinado a los programadores.
EXIT : Sale de un procesador de comandos. En la mayoría de los casos, EXIT le permite salir del DOS para volver al programa que lo llama, Windows por ejemplo.
EXPAND : Descomprime un archivo comprimido. A partir del DOS versión 5.
FASTHELP : Muestra en pantalla la lista de comandos de la versión 6 con una breve explicación.
FASTOPEN : Proporciona un acceso rápido a los archivos que se usan con más frecuencia, o a los últimos que se han utilizado, memorizando su camino de acceso.
FC : Comparación de archivos. No está disponible en todas las versiones.
FCBS : Especifica la cantidad de bloques de control de archivos, en un Config.Sys. Este comando está reservado a los expertos.
FILES : Especifica la cantidad de archivos abiertos, en un Config.Sys.
FIND : Busca la cadena de caracteres indicada en un archivo y envía al periférico activo de salida (el monitor, por ejemplo) todas las líneas en las que la encontró.
FOR : Especifica la repetición del mismo comando para cada una de las variables contenidas en la lista.
GOTO : Es un direccionamiento incondicional a una línea marcada con un rótulo del mismo nombre en un archivo .BAT.
GRAFTABL : Carga la tabla de los caracteres gráficos, los códigos ASCII 128 a 255, para la visualización en pantalla. No existe más en el DOS 6.
GRAPHIC : Carga una secuencia que permite la impresión de la pantalla que incluye caracteres gráficos, de códigos 128 a 255.
GWBASIC : Llamado del antiguo Basic avanzado de Microsoft. No existe más en el DOS 6, en el cual ha sido reemplazado por el QBasic.
HELP : Pedido de ayuda. Desde el DOS 5.
HIMEM.SYS : Administrador de memoria extendida.
IF : Comando de ejecución condicional para archivo .BAT.
INCLUDE : Incluye un bloque de configuración en otro, a través del Config.Sys. Nuevo comando con el DOS 6.
INTERLNK : Conecta dos computadoras, por medio de sus puertos paralelos o en serie. Nuevo comando del DOS 6.
INTERLNK.EXE : Administrador para Interlnk. Novedad del DOS versión 6.
INTERSVR : Lanza el centro de recuperación de datos InterLnk. Nuevo comando del DOS 6.
JOIN : Asigna el contenido de un disco a un directorio de otro disco. No existe más en el DOS 6.
KEYB : Carga el programa que administra el teclado (reemplaza al que reside en la memoria muerta, para el teclado USA).
LABEL : Crea, modifica o suprime el nombre atribuido a un disco.
LASTDRIVE : Define la cantidad de unidades de disco en el Config.Sys.
LH : Carga un programa en la memoria superior, generalmente en el Autoexec.bat. Otro nombre: LOADHIGH.
LINK : Llama al editor de conexiones.
LOADFIX : Carga un programa por encima de los primeros 64 Kb de memoria y lo ejecuta. Nuevo comando del DOS 6.
LOADHIGH : Carga un programa en la memoria superior, generalmente a través del Autoexec.bat. Desde el DOS 5. Otro nombre: LH.
MACROS : Realización de macros con Doskey.
MEM : Muestra en pantalla la memoria ocupada y la disponible.
MEMMAKER : Administración y optimización de la memoria, pero con los DOS 6. ·
MENUCOLOR : Determina el color del texto y del fondo para el primer menú, a través del Config.Sys. A partir del DOS 6.
MENUDEFAULT : Especifica el menú por defecto, en el inicio. A partir del DOS 6.
MENUITEM : A partir del DOS 6. Define un ítem del menú de arranque.
MIRROR : Copia de seguridad para el seguimiento del borrado de archivos. Con el DOS 5.
MKDIR : Crea un subdirectorio. Otro nombre de este comando: MD, por “Make Directory”, creación de un directorio.
MODE : Establece las condiciones de funcionamiento de los periféricos, impresora, interface de video y conexiones en serie, y también sirve para la preparación de las tablas de códigos.
MORE : Para visualizar página por página en la pantalla (es decir, sin que desfilen ininterrumpidamente en la pantalla)
MOVE : Mueve uno o varios archivos y da nuevo nombre a archivos o directorios. Nuevo comando con el DOS 6.
MSAV : Programa antivirus. A partir del DOS 6.
MSBACKUP : Nuevo procedimiento de copia de seguridad, a partir del DOS 6.
MSD : Provee información técnica sobre su computadora. A partir del DOS 6.
NLSFUNC : Comando relativo a los idiomas nacionales Da informaciones complementarias sobre los países y prepara el uso de las tablas de códigos con CHCP
NUMLOCK : Determina que la sección numérica del teclado esté bloqueada o no, a través del Config.Sys. Nuevo comando a partir del DOS 6.
PATH : Especifiica caminos de búsqueda alternativos para los archivos de comando (con la extensión .COM, o .EXE o .BAT) que no se encuentran en el directorio activo. Este comando se encuentra generalmente en el archivo Autoexec.bat.
PAUSE : Suspende la ejecución de un programa .BAT mostrando en pantalla un mensaje optativo de 121 caracteres como máximo.
POWER : Pone en servicio o saca de servicio la administración del consumo de energía. Nuevo comando a partir del DOS 6.
POWER.EXE : Administrador de POWER. Nuevo, a partir del DOS 6.
PRINT : Imprime el contenido de archivos, en segundo plano, mientras se prosigue con un trabajo en la pantalla.
PRINTER.SYS : Se utiliza para conmutar las tablas de códigos con las impresoras, a través del Config.Sys.
PROMPT : Define o muestra en pantalla los símbolos del sistema utilizados por el DOS.
QBASIC : Es el nuevo lenguaje Basic de Microsoft. A partir del DOS 5.
RAMDRIVE : Instala un disco virtual, a través del Config.Sys.
RD : Suprime un subdirectorio que debe estar obligatoriamente vacío (y que, por lo tanto, sólo debe contener las marcas . y ..). El nombre completo de este comando es RMDIR.
RECOVER : Interviene cuando hay que recuperar los datos de un archivo porque hay un sector defectuoso en el disco. Los datos de este sector se habrán perdido. No existe más en el DOS 6.
REM : Introduce observaciones, comentarios, en 123 caracteres como máximo por línea de REM.
REN : Cambia el nombre de un archivo.
RENAME : Cambia el nombre de un archivo. Es lo mismo que REN, pero más largo de escribir.
REPLACE : Reemplaza o agrega selectivamente archivos que provienen de un disco fuente a un disco destinatario.
RESTORE : Restaura, restablece el contenido de un disco a partir de su copia de seguridad anterior, con los DOS hasta el 5 inclusive. En el DOS 6, sólo existe para la compatibilidad.
RMDIR : Suprime un subdirectorio que debe estar obligatoriamente vacío (y que, por lo tanto, sólo debe contener las marcas . y ) El nombre abreviado es RD.
SET : Sirve para definir el entorno de trabajo que requieren algunos programas, introduciendo un nombre seguido de su equivalencia.
SETVER : Declara las versiones del DOS para algunas aplicaciones.
SETVER.EXE : Administrador de SETVER.
SHARE : Instala el programa para compartir archivos.
SHELL : Instala un procesador de comandos.
SHIFT : Sirve para utilizar más de 10 parámetros reemplazables numerados de 0 a 9, en las líneas de comando, marcando una diferencia de una posición para cada SHIFT que se introduce.
SHIPDISK : Bloquea los cabezales del disco duro antes de desplazarlo. Desapareció en el DOS 6.
SIZER.EXE : Utilizado por el programa de optimización de la memoria MemMaker Novedad del DOS 6.
SMARTDRV : Creación de la antememoria de disco SmartDrive.
SMARTDRV.EXE : Administrador de SmartDrv.
SMARTMON : Programa de monitoreo (de vigilancia) de SmartDrive.
SORT : Ordena datos.
STACKS : Define las pilas, a través del Config.Sys.
SUBMENU : Define un ítem del menú de arranque abriendo un submenú. Nuevo comando del DOS 6.
SUBST : Sustituye un camino de acceso cuya descripción es larga, y/o su unidad, por una unidad de disco ficticia que bastará con llamar luego.
SWITCHES : Sustituye el teclado extendido por el teclado convencional.
SYS : Copia los tres archivos que sirven de núcleo al sistema del disco fuente activo al disco destinatario.
TEMP : Variable de entorno.
TIME : Muestra en pantalla o configura la hora del sistema (incluidos los relojes permanentes, resguardados).
TREE : Muestra los árboles de los directorios de un disco (y la lista de sus archivos con una clave suplementaria).
TYPE : Muestra en pantalla el contenido de un archivo.
UNDELETE : Recuperación de archivos borrados. A partir de la versión DOS 5.
UNFORMAT : Reconstrucción de un disco reformateado. A partir del DOS 5.
VDISK : Instala un disco virtual, a través del Config.Sys. Dejó de estar incluido a partir del DOS 6.
VER : Muestra en pantalla la versión activa del DOS.
VERIFY : Pone en servicio (con ON) o anula (con OFF) la verificación de los datos escritos en el disco.
VOL : Muestra en pantalla el nombre del disco solicitado.
VSAFE : Residente antivirus.
XCOPY : Copia archivos selectivamente, inclusive los que provienen de subdirectorios. Es un comando excelente que puede servir incluso para efectuar copias de seguridad.
NOTA: Muchos de estos comandos puede que no funcionen por causas de que la version del DOS no es compatible con el comando osea que todabia no lo tiene incorporado y la otra causa es que los archivos internos no esten innstalados.
Algunos conseptos sacados de: support.microsoft.com
salu2
SNG
fuente: http://www.blogdelhacker.com/2007/06/21/mascomandos-ms-dos/
An A-Z Index of the SQL Server 2005 database
Aggregate - CREATE AGGREGATE
- DROP AGGREGATE
Application Role - CREATE APPLICATION ROLE
- ALTER APPLICATION ROLE
- DROP APPLICATION ROLE
Assembly - CREATE ASSEMBLY
- ALTER ASSEMBLY
- DROP ASSEMBLY
ALTER AUTHORIZATION
BACKUP
BACKUP CERTIFICATE
BEGIN [DIALOG [CONVERSATION]]
Certificate - ALTER CERTIFICATE
- CREATE CERTIFICATE
- DROP CERTIFICATE
CHECKPOINT
COMMIT
Contract - CREATE CONTRACT
- DROP CONTRACT
Credential - CREATE CREDENTIAL
- ALTER CREDENTIAL
- DROP CREDENTIAL
Database - CREATE DATABASE
- ALTER DATABASE
- DROP DATABASE
DBCC CHECKALLOC - Check consistency of disk allocation.
DBCC CHECKCATALOG - Check catalog consistency
DBCC CHECKCONSTRAINTS - Check integrity of table constraints.
DBCC CHECKDB - Check allocation, and integrity of all objects.
DBCC CHECKFILEGROUP - Check all tables and indexed views in a filegroup.
DBCC CHECKIDENT - Check identity value for a table.
DBCC CHECKTABLE - Check integrity of a table or indexed view.
DBCC CLEANTABLE - Reclaim space from dropped variable-length columns.
DBCC dllname - Unload a DLL from memory.
DBCC DROPCLEANBUFFERS - Remove all clean buffers from the buffer pool.
DBCC FREE... CACHE - Remove items from cache.
DBCC HELP - Help for DBCC commands.
DBCC INPUTBUFFER - Display last statement sent from a client to a database instance.
DBCC OPENTRAN - Display information about recent transactions.
DBCC OUTPUTBUFFER - Display last statement sent from a client to a database instance.
DBCC PROCCACHE - Display information about the procedure cache
DBCC SHOW_STATISTICS - Display the current distribution statistics
DBCC SHRINKDATABASE - Shrink the size of the database data and log files.
DBCC SHRINKFILE - Shrink or empty a database data or log file.
DBCC SQLPERF - Display transaction-log space statistics. Reset wait and latch statistics.
DBCC TRACE... - Enable or Disable trace flags
DBCC UPDATEUSAGE - Report and correct page and row count inaccuracies in catalog views
DBCC USEROPTIONS - Return the SET options currently active
DBCC deprecated commands
DECLARE
Default - CREATE DEFAULT
- DROP DEFAULT
DELETE
DENY - DENY Object permissions
- DENY User/Role permissions
Endpoint - CREATE ENDPOINT
- ALTER ENDPOINT
- DROP ENDPOINT
Event - CREATE EVENT NOTIFICATION
- DROP EVENT NOTIFICATION
EXECUTE
EXECUTE AS
Fulltext Catalog - CREATE FULLTEXT CATALOG
- ALTER FULLTEXT CATALOG
- DROP FULLTEXT CATALOG
Fulltext Index - CREATE FULLTEXT INDEX
- ALTER FULLTEXT INDEX
- DROP FULLTEXT INDEX
Function - CREATE FUNCTION
- ALTER FUNCTION
- DROP FUNCTION
GO
GRANT - GRANT Object permissions
- GRANT User/Role permissions
Index - CREATE INDEX
- ALTER INDEX
- DROP INDEX
INSERT
iSQL -U user -P password -i script.sql -o logfile.log
Key - CREATE ASYMMETRIC KEY
- ALTER ASYMMETRIC KEY
- DROP ASYMMETRIC KEY
- CREATE SYMMETRIC KEY
- OPEN SYMMETRIC KEY
- CLOSE SYMMETRIC KEY
- ALTER SYMMETRIC KEY
- DROP SYMMETRIC KEY
KILL
KILL QUERY NOTIFICATION
KILL STATS JOB
Login - CREATE LOGIN
- ALTER LOGIN
- DROP LOGIN
Master Key - CREATE MASTER KEY
- ALTER MASTER KEY
- BACKUP MASTER KEY
- DROP MASTER KEY
- RESTORE MASTER KEY
- ALTER SERVICE MASTER KEY
- BACKUP SERVICE MASTER KEY
- RESTORE SERVICE MASTER KEY
Message Type - CREATE MESSAGE TYPE
- ALTER MESSAGE TYPE
- DROP MESSAGE TYPE
Partition Function - CREATE PARTITION FUNCTION
- ALTER PARTITION FUNCTION
- DROP PARTITION FUNCTION
Partition Scheme - CREATE PARTITION SCHEME
- ALTER PARTITION SCHEME
- DROP PARTITION SCHEME
Procedure - CREATE PROCEDURE
- ALTER PROCEDURE
- DROP PROCEDURE
Queue - CREATE QUEUE
- ALTER QUEUE
- DROP QUEUE
Remote Service Binding - CREATE REMOTE SERVICE BINDING
- ALTER REMOTE SERVICE BINDING
- DROP REMOTE SERVICE BINDING
RESTORE - RESTORE DATABASE Complete
RESTORE DATABASE Partial
RESTORE DATABASE Files
RESTORE LOGS
RESTORE DATABASE_SNAPSHOT
RESTORE FILELISTONLY - List database and log files
RESTORE HEADERONLY - List backup header info
RESTORE LABELONLY - Media info
RESTORE REWINDONLY - Rewind and close tape device
RESTORE VERIFYONLY
REVERT
REVOKE - REVOKE Object permissions
- REVOKE User/Role permissions
Role - CREATE ROLE
- ALTER ROLE
- DROP ROLE
ROLLBACK
Route - CREATE ROUTE
- ALTER ROUTE
- DROP ROUTE
Schema - CREATE SCHEMA
- ALTER SCHEMA
- DROP SCHEMA
SELECT
SEND
SERVERPROPERTY
Service - CREATE SERVICE
- ALTER SERVICE
- DROP SERVICE
SESSION_USER
SESSIONPROPERTY
SET @local_variable
SET
SHUTDOWN
Signature - ADD SIGNATURE
- DROP SIGNATURE
Statistics - CREATE STATISTICS
- UPDATE STATISTICS
- DROP STATISTICS
Synonym - CREATE SYNONYM
- DROP SYNONYM
Table - CREATE TABLE
- ALTER TABLE
- DROP TABLE
- TRUNCATE TABLE
Transaction - BEGIN DISTRIBUTED TRANSACTION
- BEGIN TRANSACTION
- COMMIT TRANSACTION
Trigger - CREATE TRIGGER
- ALTER TRIGGER
- ENABLE TRIGGER
- DISABLE TRIGGER
- DROP TRIGGER
Type - CREATE TYPE
- DROP TYPE
UNION
UPDATE
User - CREATE USER
- ALTER USER
- DROP USER
USE
View - CREATE VIEW
- ALTER VIEW
- DROP VIEW
XML Schema Collection - CREATE XML SCHEMA COLLECTION
- ALTER XML SCHEMA COLLECTION
- DROP XML SCHEMA COLLECTION
Fuente: http://www.ss64.com/sql/
An A-Z Index of Oracle SQL Commands
ANALYZE
AUDIT
CALL
Cluster - CREATE CLUSTER
- ALTER CLUSTER
- DROP CLUSTER
COMMENT
COMMIT
CONNECT
CONSTRAINT - Add / Enable
Context - CREATE CONTEXT
- DROP CONTEXT
Controlfile - CREATE CONTROLFILE
Database - CREATE DATABASE
- ALTER DATABASE
DELETE
DESCRIBE
Dimension - CREATE DIMENSION
- ALTER DIMENSION
- DROP DIMENSION
Directory - CREATE DIRECTORY
- DROP DIRECTORY
EXEC
EXECUTE IMMEDIATE
EXPLAIN PLAN
Function - CREATE FUNCTION
- ALTER FUNCTION
- DROP FUNCTION
GRANT
Index - CREATE INDEX
- ALTER INDEX
- DROP INDEX
Indextype - CREATE INDEXTYPE
- DROP INDEXTYPE
INSERT
INTERSECT
Java - CREATE JAVA
- ALTER JAVA
- DROP JAVA
Library - CREATE LIBRARY
- DROP LIBRARY
Link - CREATE DATABASE LINK
- DROP DATABASE LINK
LOCK TABLE
Mview - CREATE MATERIALIZED VIEW
- ALTER MATERIALIZED VIEW
- DROP MATERIALIZED VIEW
- CREATE MATERIALIZED VIEW LOG
- ALTER MATERIALIZED VIEW LOG
- DROP MATERIALIZED VIEW LOG
MINUS
NOAUDIT
Operator - CREATE OPERATOR
- DROP OPERATOR
Outline - CREATE OUTLINE
- ALTER OUTLINE
- DROP OUTLINE
Package - CREATE PACKAGE/BODY
- ALTER PACKAGE
- DROP PACKAGE
Pfile - CREATE PFILE
Procedure - CREATE PROCEDURE
- ALTER PROCEDURE
- DROP PROCEDURE
Profile - CREATE PROFILE
- ALTER PROFILE
- DROP PROFILE
RECOVER
RENAME
Resource - ALTER RESOURCE COST
REVOKE
RMAN - Recovery Manager
Role - CREATE ROLE
- SET ROLE
- ALTER ROLE
- DROP ROLE
ROLLBACK
Rollback - CREATE ROLLBACK SEGMENT
- ALTER ROLLBACK SEGMENT
- DROP ROLLBACK SEGMENT
SAVEPOINT
Schema - CREATE SCHEMA
SELECT
Sequence - CREATE SEQUENCE
- ALTER SEQUENCE
- DROP SEQUENCE
Session - ALTER SESSION
SHUTDOWN
SNAPSHOT
SPfile - CREATE SPFILE
STARTUP
Statistics - ASSOCIATE STATISTICS
- DISASSOCIATE STATISTICS
Synonym - CREATE SYNONYM
- DROP SYNONYM
System - ALTER SYSTEM
Table - CREATE TABLE
- ALTER TABLE
- DROP TABLE
Tablespace - CREATE TABLESPACE
- ALTER TABLESPACE
- DROP TABLESPACE
- CREATE TEMPORARY TABLESPACE
Transaction - SET TRANSACTION
Trigger - CREATE TRIGGER
- ALTER TRIGGER
- DROP TRIGGER
TRUNCATE
Type - CREATE TYPE
- ALTER TYPE
- DROP TYPE
- CREATE TYPE BODY
- DROP TYPE BODY
UPDATE
UNION
User - CREATE USER
- ALTER USER
- DROP USER
View - CREATE VIEW
- ALTER VIEW
- DROP VIEW
Syntax:
Words in CAPS are Oracle commands, words in lower-case are the options you can modify.
Sections enclosed in [ ] are optional, underlined options are the default
Sections enclosed in { } are alternatives. The pipe symbol `|` indicates OR (more)
The syntax on these pages is based on Oracle version 9.2, while this is almost all still supported in both 10g and 11g there are a few notes added where things have changed. Pages covering the newer functionality (RAC, Data Guard etc) may appear in the future.
Fuente: http://www.ss64.com/ora/
An A-Z Index of the Bash command line for Linux.
alias Create an alias
apropos Search Help manual pages (man -k)
awk Find and Replace text, database sort/validate/index
bash GNU Bourne-Again SHell
bc Arbitrary precision calculator language
bg Send to background
break Exit from a loop
builtin Run a shell builtin
bzip2 Compress or decompress named file(s)
cal Display a calendar
case Conditionally perform a command
cat Display the contents of a file
cd Change Directory
cfdisk Partition table manipulator for Linux
chgrp Change group ownership
chmod Change access permissions
chown Change file owner and group
chroot Run a command with a different root directory
cksum Print CRC checksum and byte counts
clear Clear terminal screen
cmp Compare two files
comm Compare two sorted files line by line
command Run a command - ignoring shell functions
continue Resume the next iteration of a loop
cp Copy one or more files to another location
cron Daemon to execute scheduled commands
crontab Schedule a command to run at a later time
csplit Split a file into context-determined pieces
cut Divide a file into several parts
date Display or change the date & time
dc Desk Calculator
dd Convert and copy a file, write disk headers, boot records
ddrescue Data recovery tool
declare Declare variables and give them attributes
df Display free disk space
diff Display the differences between two files
diff3 Show differences among three files
dig DNS lookup
dir Briefly list directory contents
dircolors Colour setup for `ls'
dirname Convert a full pathname to just a path
dirs Display list of remembered directories
du Estimate file space usage
echo Display message on screen
egrep Search file(s) for lines that match an extended expression
eject Eject removable media
enable Enable and disable builtin shell commands
env Environment variables
ethtool Ethernet card settings
eval Evaluate several commands/arguments
exec Execute a command
exit Exit the shell
expand Convert tabs to spaces
export Set an environment variable
expr Evaluate expressions
false Do nothing, unsuccessfully
fdformat Low-level format a floppy disk
fdisk Partition table manipulator for Linux
fg Send job to foreground
fgrep Search file(s) for lines that match a fixed string
file Determine file type
find Search for files that meet a desired criteria
fmt Reformat paragraph text
fold Wrap text to fit a specified width.
for Expand words, and execute commands
format Format disks or tapes
free Display memory usage
fsck File system consistency check and repair
ftp File Transfer Protocol
function Define Function Macros
gawk Find and Replace text within file(s)
getopts Parse positional parameters
grep Search file(s) for lines that match a given pattern
groups Print group names a user is in
gzip Compress or decompress named file(s)
hash Remember the full pathname of a name argument
head Output the first part of file(s)
history Command History
hostname Print or set system name
id Print user and group id's
if Conditionally perform a command
ifconfig Configure a network interface
import Capture an X server screen and save the image to file
install Copy files and set attributes
join Join lines on a common field
kill Stop a process from running
less Display output one screen at a time
let Perform arithmetic on shell variables
ln Make links between files
local Create variables
locate Find files
logname Print current login name
logout Exit a login shell
look Display lines beginning with a given string
lpc Line printer control program
lpr Off line print
lprint Print a file
lprintd Abort a print job
lprintq List the print queue
lprm Remove jobs from the print queue
ls List information about file(s)
lsof List open files
make Recompile a group of programs
man Help manual
mkdir Create new folder(s)
mkfifo Make FIFOs (named pipes)
mkisofs Create an hybrid ISO9660/JOLIET/HFS filesystem
mknod Make block or character special files
more Display output one screen at a time
mount Mount a file system
mtools Manipulate MS-DOS files
mv Move or rename files or directories
netstat Networking information
nice Set the priority of a command or job
nl Number lines and write files
nohup Run a command immune to hangups
nslookup Query Internet name servers interactively
open Open a file in its default application
op Operator access
passwd Modify a user password
paste Merge lines of files
pathchk Check file name portability
ping Test a network connection
popd Restore the previous value of the current directory
pr Prepare files for printing
printcap Printer capability database
printenv Print environment variables
printf Format and print data
ps Process status
pushd Save and then change the current directory
pwd Print Working Directory
quota Display disk usage and limits
quotacheck Scan a file system for disk usage
quotactl Set disk quotas
ram ram disk device
rcp Copy files between two machines.
read read a line from standard input
readonly Mark variables/functions as readonly
renice Alter priority of running processes
remsync Synchronize remote files via email
return Exit a shell function
rm Remove files
rmdir Remove folder(s)
rsync Remote file copy (Synchronize file trees)
screen Multiplex terminal, run remote shells via ssh
scp Secure copy (remote file copy)
sdiff Merge two files interactively
sed Stream Editor
select Accept keyboard input
seq Print numeric sequences
set Manipulate shell variables and functions
sftp Secure File Transfer Program
shift Shift positional parameters
shopt Shell Options
shutdown Shutdown or restart linux
sleep Delay for a specified time
sort Sort text files
source Run commands from a file `.'
split Split a file into fixed-size pieces
ssh Secure Shell client (remote login program)
strace Trace system calls and signals
su Substitute user identity
sudo Execute a command as another user
sum Print a checksum for a file
symlink Make a new name for a file
sync Synchronize data on disk with memory
tail Output the last part of files
tar Tape ARchiver
tee Redirect output to multiple files
test Evaluate a conditional expression
time Measure Program running time
times User and system times
touch Change file timestamps
top List processes running on the system
traceroute Trace Route to Host
trap Run a command when a signal is set(bourne)
tr Translate, squeeze, and/or delete characters
true Do nothing, successfully
tsort Topological sort
tty Print filename of terminal on stdin
type Describe a command
ulimit Limit user resources
umask Users file creation mask
umount Unmount a device
unalias Remove an alias
uname Print system information
unexpand Convert spaces to tabs
uniq Uniquify files
units Convert units from one scale to another
unset Remove variable or function names
unshar Unpack shell archive scripts
until Execute commands (until error)
useradd Create new user account
usermod Modify user account
users List users currently logged in
uuencode Encode a binary file
uudecode Decode a file created by uuencode
v Verbosely list directory contents (`ls -l -b')
vdir Verbosely list directory contents (`ls -l -b')
vi Text Editor
watch Execute/display a program periodically
wc Print byte, word, and line counts
whereis Report all known instances of a command
which Locate a program file in the user's path.
while Execute commands
who Print all usernames currently logged in
whoami Print the current user id and name (`id -un')
Wget Retrieve web pages or files via HTTP, HTTPS or FTP
xargs Execute utility, passing constructed argument list(s)
yes Print a string until interrupted
. Run a command script in the current shell
### Comment / Remark
An A-Z Index of Windows PowerShell commands
a
Get-Acl Get permission settings for a file or registry key
Set-Acl Set permissions
Get-Alias gal Return alias names for Cmdlets
Import-Alias ipal Import an alias list from a file
New-Alias nal Create a new alias.
Set-Alias sal Create or change an alias
Get-AuthenticodeSignature Get the signature object associated with a file
Set-AuthenticodeSignature Place a signature in a .ps1 script or other file
c
Set-Location cd/chdir/sl Set the current working location
Get-ChildItem dir/ls/gci Get child items (contents of a folder or registry key)
Get-Command gcm Retrieve basic information about a command
Measure-Command Measure running time
Trace-Command Trace an expression or command
Add-Content ac Add to the content of the item
Get-Content cat/type/gc Get content from item (specific location)
Set-Content sc Set content in the item (specific location)
Clear-Content clc Remove content from a file/item
ConvertTo-Html Convert the input into an HTML table
ConvertFrom-SecureString Convert a secure string into an encrypted standard string
ConvertTo-SecureString Convert an encrypted standard string into a secure string
Clear-Host clear/cls Clear the screen
Clear-Item cli Remove content from a variable or an alias
Copy-Item copy/cp/cpi Copy an item from a namespace location
Get-Credential Get a security credential (username/password)
Get-Culture Get region information (language and keyboard layout)
d
Get-ChildItem dir/ls/gci Get child items (contents of a folder or registry key)
Get-Date Get current date and time
Set-Date Set system time on the host system
Get-PSDrive gdr Get drive information (DriveInfo)
New-PSDrive mount/ndr Install a new drive on the machine
Remove-PSDrive rdr Remove a provider/drive from its location
e
Get-Eventlog Get eventlog data
Get-ExecutionPolicy Get the execution policy for the shell
Set-ExecutionPolicy Change the execution policy (user preference)
Export-Alias epal Export an alias list to a file
Export-Clixml Produce a clixml representation of powershell objects
Export-Console Export console configuration to a file
Export-Csv epcsv Export to Comma Separated Values (spreadsheet)
Invoke-Expression Run a PowerShell expression
f
ForEach-Object foreach Loop for each object in the pipeline
ForEach Loop through values in the pipeline
Format-Custom fc Format output using a customized view
Format-List fl Format output as a list of properties, each on a new line
Format-Table ft Format output as a table
Format-Wide fw Format output as a table listing one property only
g
Get-Item gi Get a file/registry object (or any other namespace object)
Get-ChildItem dir/ls/gci Get child items (contents of a folder or registry key)
h
Get-Help help Open the help file
Add-History Add entries to the session history
Get-History history/h/ghy Get a listing of the session history
Invoke-History r/ihy Invoke a previously executed Cmdlet
Get-Host Get host information
Clear-Host clear/cls Clear the screen
Read-Host Read a line of input from the host console
Write-Host Display objects through the host user interface
i
if Conditionally perform a command
Import-Clixml Import a clixml file and rebuild the PS object
Import-Csv ipcsv Take values from a CSV list and send objects down the pipeline.
Get-Item gi Get a file object or get a registry (or other namespace) object
Invoke-Item ii Invoke an executable or open a file (START)
New-Item ni Create a new item in a namespace
Remove-Item rm/del/erase/rd/ri/rmdir Remove an item
Set-Item si Change the value of an item
Clear-ItemProperty Delete the value of a property
Copy-ItemProperty Copy a property along with its value
Get-ItemProperty Retrieve the properties of an object
Move-ItemProperty Move a property from one location to another
New-ItemProperty Set a new property of an item at a location
Remove-ItemProperty Delete the property and its value from an item
Rename-ItemProperty Rename a property of an item
Set-ItemProperty Set the value of a property
l
Get-Location pwd / gl Get and display the current location
Pop-Location popd Set the current working location (from the stack)
Push-Location pushd Push a location to the stack
Set-Location cd/chdir/sl Set the current working location
m
Add-Member Add a member to an instance of a PowerShell object
Get-Member gm Enumerate the properties of an object
Move-Item move/mv/mi Move an item from one location to another
o
Compare-Object Compare the properties of objects
Group-Object group Group the objects that contain the same value for a common property
Measure-Object Measure the properties of an object
New-Object Create a new .Net object
Select-Object select Select properties of objects.
Sort-Object sort Sort objects by property value
Where-Object Filter the objects passed along the command pipeline.
Out-Default Send output to default
Out-File Send command output to a file
Out-Host oh Send the pipelined output to the host
Out-Null Send output to null
Out-Printer lp Send the output to a printer
Out-String Send objects to the host as strings
p
Powershell Launch a powershell session
Convert-Path cvpa Convert a ps path to a provider path
Join-Path Combine a path and child-path
Resolve-Path rvpa Resolves the wildcards in a path
Split-Path Return part of a path
Test-Path Return true if the path exists, otherwise return false
Get-Pfxcertificate Get pfx certificate information
Get-Process ps/gps Get a list of processes on a machine
Stop-Process kill/spps Stop a running process
Clear-ItemProperty clp Remove the property value from a property
Copy-ItemProperty cpp Copy a property along with it's value
Get-ItemProperty gp Retrieve the properties of an object
Move-ItemProperty mp Move a property from one location to another
New-ItemProperty Set a new property
Remove-ItemProperty rp Remove a property and its value
Rename-ItemProperty rnp Renames a property at its location
Set-ItemProperty sp Set a property at the specified location to a specified value
Get-PsProvider Get information for the specified provider
Set-PSdebug Turn script debugging on or off
Add-PsSnapIn Add snap-ins to the console
Get-PsSnapin List PowerShell snap-ins on this computer
Remove-PSSnapin Remove PowerShell snap-ins from the console
r
Read-Host Read a line of input from the host console
Remove-Item rm/del/erase/rd/ri/rmdir Remove an item
Rename-Item ren/rni Change the name of an existing item
Rename-ItemProperty Rename a property of an item
s
Get-Service gsv Get a list of services
New-Service Create a new service
Restart-Service Stop and then restart a service
Resume-Service Resume a suspended service
Set-Service Change the start mode/properties of a service
Start-Service sasv Start a stopped service
Stop-Service spsv Stop a running service
Suspend-Service Suspend a running service
Start-Sleep sleep Suspend shell, script, or runspace activity
Select-String Search through strings or files for patterns
t
Tee-Object Send input objects to two places
New-Timespan Create a timespan object
Trace-Command Trace an expression or command
Get-Tracesource Get components that are instrumented for tracing.
Set-Tracesource Trace a PowerShell component
Start-Transcript Start a transcript of a command shell session
Stop-Transcript Stop the transcription process
u
Get-Uiculture Get the ui culture information
Get-Unique gu Get the unique items in a collection
Update-Formatdata Update and append format data files
Update-Typedata Update the current extended type configuration
v
Clear-Variable clv Remove the value from a variable
Get-Variable gv Get a powershell variable
New-Variable nv Create a new variable
Remove-Variable rv Remove a variable and its value
Set-Variable set/sv Set a variable and a value
w
Where-Object where Filter input from the pipeline
Get-WMIobject Get WMI class information
Write-Debug Write a debug message to the host display
Write-Error Write an object to the error pipeline.
Write-Output echo Write an object to the pipeline
Write-Progress Display a progress bar
Write-Verbose Write a string to the host's verbose display
Write-Warning Write a warning message
Fuente: http://www.ss64.com/ps/




