- Barajar
ActivarDesactivar
- Alphabetizar
ActivarDesactivar
- Frente Primero
ActivarDesactivar
- Ambos lados
ActivarDesactivar
- Leer
ActivarDesactivar
Leyendo...
Cómo estudiar sus tarjetas
Teclas de Derecha/Izquierda: Navegar entre tarjetas.tecla derechatecla izquierda
Teclas Arriba/Abajo: Colvea la carta entre frente y dorso.tecla abajotecla arriba
Tecla H: Muestra pista (3er lado).tecla h
Tecla N: Lea el texto en voz.tecla n
Boton play
Boton play
14 Cartas en este set
- Frente
- Atrás
Regsvr32
|
Tool for registering or removing DLL's and ActiveX controls of the Windows register (C:\Windows\system32\ or C:\Windows\SysWOW64\).
|
ActiveX
|
Define components of software reusables independently of the programming language.
|
Regasm.exe
|
Assembly registration tool that reads the metadata of an assembly and add them in the registry. Allow use a. NET like a COM component.
|
tblimp.exe
|
Allow us to use a COM component like NET (create an interop)
|
CIL
|
Common Intermediate Language. This is a language legible by the humans of lowest level.
|
Gacutil
|
Global Assembly Cache, tool allows us to install and uninstall assemblies of the Cache and list the contents of the Cache.
|
How does work GACUTIL?
|
. NET Will first look in to your Bin folder for reference dll. If it found it Will use that, if not it Will search for GAC.
|
Advantages GACUTIL
|
We can use different versions of the same assembly by same application or different application.
Shared location: Assemblies that are used by many application can reference the GAC, instead of a separarte versión being distribuited with each application. File security: Protect the folder where the assemblies are installed with privileges. Versioning: The assemblies are strongly named, they have a unique reference which allows múltiple versions to be installed on the same machine. |
Delete a Windows service
|
SC DELETE servicename
|
Stop services that are blocked in stopped state
|
1) Search the short name of the service (in services)
2) Then search the PID: Open the cmd and execute "sc queryex "short_name" 3) Get the PID and execute "taskkill /f /PID" |
ngen.exe
|
Native image generator
|
What is the objective of Ngen. Exe?
|
1) Mejora el tiempo de inicio de la aplicación al reducir el proceso de compilación JIT en tiempo de ejecución.
2) Evitamos la necesidad de compilar el código una y otra vez. 3) Cuando creamos imágenes nativas y las instalamos en la Caché de imágenes nativas. En tiempo de ejecución se utiliza la Caché de las imágenes nativas en lugar del compilador JIT para compilar el assembly original. |
¿Qué contiene System32?
|
Está lleno de archivos de 64 bits como DLLs usadas por programas y ejecutable que son parte de Windows.
|
¿Qué contiene SYSWOW64?
|
Significa 32-bit on Windows 64-bit. Está lleno de archivos de 32 bits, esto permite a Windows ejecutar archivos de programas de 32 bits en una versión de 64 bits.
|