Hello Taylorez,
This macro will change the password in the file. There are two important pieces of information that needed for this to work. The location of the new and old passwords.
This macro will display the Open File dialog. You can then select the folder and file you want to open. The default files shown are *.h, *.txt, and *.csv. You also can choose "All Files".
'Written: October 12, 2010
'Author: Leith Ross (www.execlforum.com)
Sub CopyAndModifyFile()
Dim Data As Variant
Dim FileFilter As String
Dim FileName As String
Dim FSO As Object
Dim I As Long
Dim oldpwd As String, newpwd As String
Dim TextFile As Object
oldpwd = "1234"
newpwd = ActiveSheet.Range("E2")
FileFilter = "Text files (*.h;*.txt;*.csv),*.h;*.txt;*.csv,All Files (*.*), *.*"
FileName = Application.GetOpenFilename(FileFilter, 1)
If FileName = "False" Then Exit Sub
Set FSO = CreateObject("Scripting.FileSystemObject")
FSO.CopyFile FileName, "old " & FSO.GetFileName(FileName)
Set TextFile = FSO.OpenTextFile(FileName, 1, False, -2)
Data = TextFile.ReadAll
TextFile.Close
I = InStr(1, Data, oldpwd)
If I > 0 Then
Set TextFile = FSO.OpenTextFile(FileName, 2, True, -2)
Data = Left(Data, I - 1) & newpwd & Right(Data, I + Len(oldpwd))
TextFile.Write Data
TextFile.Close
End If
End Sub
Bookmarks