viernes, 29 de enero de 2016

Cisco AnyConnect Profiles

Local AnyConnect Profiles

XML and profile files are stored locally to the users machine. The location varies based on OS.

Windows XP
%ALLUSERSPROFILE%\Application Data\Cisco\ Cisco AnyConnect Secure Mobility Client\Profile

Windows Vista
%ProgramData%\Cisco\Cisco AnyConnect Secure Mobility Client\Profile

Windows 7
%ProgramData%\Cisco\Cisco AnyConnect Secure Mobility Client\Profile

Mac OS X
/opt/cisco/anyconnect/profile

Linux
/opt/cisco/anyconnect/profile

fuente: http://www.tunnelsup.com/locating-the-cisco-anyconnect-profiles

martes, 26 de enero de 2016

Recursos

http://bit.ly/1Pi0aNR

Team Viewer

http://download.teamviewer.com/download/version_8x/TeamViewer_Setup.exe
http://download.teamviewer.com/download/version_7x/TeamViewer_Setup.exe
http://download.teamviewer.com/download/version_5x/TeamViewer_Setup.exe


jueves, 21 de enero de 2016

Ejemplos data source

.\SQLEXPRESS
192.168.1.240\SQLEXPRESS
(local)\SQLEXPRESS
usuario-pc\SQLEXPRESS
127.0.0.1\sqlexpress

miércoles, 20 de enero de 2016

Borrar listado de servidores y contraseñas sql

SQL Server Management Studio 2014:
C:\Users\%username%\AppData\Roaming\Microsoft\SQL Server Management Studio\12.0\SqlStudio.bin
SQL Server Management Studio 2012:
C:\Users\%username%\AppData\Roaming\Microsoft\SQL Server Management Studio\11.0\SqlStudio.bin
SQL Server Management Studio 2008:
C:\Users\%username%\AppData\Roaming\Microsoft\Microsoft SQL Server\100\Tools\Shell\SqlStudio.bin
SQL Server Management Studio 2005:
  • In Windows 8/7/Vista: C:\Users\%username%\AppData\Roaming\Microsoft\Microsoft SQL Server\90\Tools\Shell\mru.dat
  • Windows XP: C:\Documents and Settings\%username%\Application Data\Microsoft\Microsoft SQL Server\90\Tools\Shell\mru.dat
fuente: http://www.top-password.com/blog/sql-server-management-studio-saved-password/

jueves, 14 de enero de 2016

Apagar y Reiniciar equipo

Apagar: shutdown.exe -s -t 00
Reiciniar: shutdown.exe -r -t 00

Leer archivo txt

Dim rd As New System.IO.StreamReader(rutaArchivo)
            Dim linea As String = rd.ReadLine()
            While linea IsNot Nothing
                'Código aquí...
                linea = rd.ReadLine()
            End While
            rd.Close()

martes, 12 de enero de 2016

Buscar y capturar ruta de un archivo

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim openfiledialog1 As New OpenFileDialog()
        Dim rutaArchivo As String = ""

        If openfiledialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
            rutaArchivo = openfiledialog1.FileName()
            MessageBox.Show(rutaArchivo)
        End If
    End Sub