-
WSCaptainKen
AskWoody LoungerAfter watching this, I’m not convinced that cloud backup is the way to go.
http://www.newsy.com/videos/our-lost-century-google-vp-warns-digital-media-could-vanish/ -
WSCaptainKen
AskWoody LoungerJuly 27, 2014 at 5:59 pm in reply to: All security updates for IE Flash Player for Windows 8.1 fail to install #1460969GeorgeLee and Berton, you guys are saying the Flash works for you in FF, but not in IE?
-
WSCaptainKen
AskWoody LoungerJuly 25, 2014 at 11:59 pm in reply to: All security updates for IE Flash Player for Windows 8.1 fail to install #1460694Thank you Joel for replying with a direction to take. Unfortunately, after trying this I got the exact same results.
I decided to then look up the Windows update error 0x80073712, which lead me to this page:
http://windows.microsoft.com/en-us/windows-8/windows-update-error-0x80073712As you can see by the screenshots, the “DISM.exe /Online /Cleanup-image /Scanhealth” worked.
37489-Screenshot-14However, “DISM.exe /Online /Cleanup-image /Restorehealth” initially looked like it was working and then didn’t complete.
37490-Screenshot-16Here’s the log file:
http://www.captainken.us/files/dism.logNot sure if this should be my next step as recommended in the error message, and I wouldn’t know where to begin with it.
http://go.microsoft.com/fwlink/?Linkid=243077 -
WSCaptainKen
AskWoody LoungerGood news, I got it to work and then some!
GetSQL:
“SELECT tblWarrantyToSend.Include, tblCompanyContacts.ContactName, [tblClients/Prospects].CompName, tblCompanyContacts.ContactID, tblCompanyContacts.Type, tblSubContracts.WarrantyType, tblSubContracts.Status, tblMainContracts.Model, tblMainContracts.SN, tblMainContracts.LocationDesc, tblCompanyContacts.Email, tblSubContracts.PrevExpire, tblSubContracts.SubContractID, tblCompanyContacts.Notes ” & _
“FROM [tblClients/Prospects] INNER JOIN (((tblWarrantyToSend INNER JOIN tblCompanyContacts ON tblWarrantyToSend.ContactID = tblCompanyContacts.ContactID) INNER JOIN tblMainContracts ON tblWarrantyToSend.MainContractId = tblMainContracts.MainContractID) INNER JOIN tblSubContracts ON tblWarrantyToSend.SubContractId = tblSubContracts.SubContractID) ON [tblClients/Prospects].CompID = tblCompanyContacts.CompID ” & _
“WHERE (((tblMainContracts.Model) Like ‘k*’) AND ((tblWarrantyToSend.Archive)=No)) AND ” & strW & _
” Order By ” & strOrderCode:Dim db As Database Dim rsRen As Recordset Dim strSQL_Ren As String Dim strNote As String Dim strCurrentContactID As String Set db = CurrentDb strSQL_Ren = GetSQL Set rsRen = db.OpenRecordset(strSQL_Ren) ‘SET LOOP PARAMETERS strNote = Format(Date, “mm-dd-yy”) & ” The following warranty email(s) were sent:” & vbCrLf strCurrentContactID = “XXX” With rsRen .MoveFirst Do While Not .EOF ‘HANDLE RECORD NOTE INSERTION If strCurrentContactID !ContactID Then If strCurrentContactID “XXX” Then .MovePrevious .Edit !Notes = strNote & !Notes .Update .MoveNext strNote = Format(Date, “mm-dd-yy”) & ” The following warranty email(s) were sent:” & vbCrLf End If strNote = strNote & ” – ” & !Model & ” – ” & !SN & ” – ” & !LocationDesc & ” – ” & !WarrantyType & vbCrLf Else strNote = strNote & ” – ” & !Model & ” – ” & !SN & ” – ” & !LocationDesc & ” – ” & !WarrantyType & vbCrLf End If strCurrentContactID = !ContactID .MoveNext Loop ‘UPDATE LAST RECORD NOTE .MoveLast strNote = strNote & ” – ” & !Model & ” – ” & !SN & ” – ” & !LocationDesc & ” – ” & !WarrantyType & vbCrLf .Edit !Notes = strNote & vbCrLf & !Notes .Update .Close End With MsgBox “The process has been completed successfully!” db.Close Set rsRen = Nothing: Set db = Nothing
Thanks for all the help!
Ken
-
WSCaptainKen
AskWoody LoungerSorry guys, here’s the GetSQL.
strSQL = “SELECT tblWarrantyToSend.Include, tblCompanyContacts.ContactName, [tblClients/Prospects].CompName, tblCompanyContacts.ContactID, tblCompanyContacts.Type, tblSubContracts.WarrantyType, tblSubContracts.Status, tblKeyWatcher.KwModelType, tblMainContracts.SN, tblMainContracts.LocationDesc, tblCompanyContacts.Email, tblSubContracts.PrevExpire ” & _
“FROM ([tblClients/Prospects] INNER JOIN (((tblWarrantyToSend INNER JOIN tblCompanyContacts ON tblWarrantyToSend.ContactID = tblCompanyContacts.ContactID) INNER JOIN tblMainContracts ON tblWarrantyToSend.MainContractId = tblMainContracts.MainContractID) INNER JOIN tblSubContracts ON tblWarrantyToSend.SubContractId = tblSubContracts.SubContractID) ON [tblClients/Prospects].CompID = tblCompanyContacts.CompID) INNER JOIN tblKeyWatcher ON tblMainContracts.MainContractID = tblKeyWatcher.MainContractID ” & _
” Where (((tblWarrantyToSend.Archive)=No)) AND ” & strW & _
” Order By ” & strOrder -
WSCaptainKen
AskWoody LoungerGetSQL are the 197 records I need to loop through and then modify the Note field in the records within rsNote that match.
-
WSCaptainKen
AskWoody LoungerThank you John, that made huge difference, but completely there.
The issue now is that GetSQL has a record set of 197 and rsNote has recordset of 1116. The code is modifying 197 records, but they are random and therefore it appears they are outside of the GetSQL recordset.
Also I can’t figure out where to put the Debug.Print as it is only showing one record.
Code:Private Sub cmdTest_Click() Dim db As Database Dim rsRen As Recordset Dim rsNote As Recordset Dim strSQL_Ren As String Dim strSQL_Note As String Dim strNote As String Dim strOldNote As String Set db = CurrentDb strNote = “testing 9” strSQL_Ren = GetSQL Set rsRen = db.OpenRecordset(strSQL_Ren) rsRen.MoveLast rsRen.MoveFirst MsgBox “There are: ” & rsRen.RecordCount strSQL_Note = “Select * From tblCompanyContacts” Set rsNote = Nothing Set rsNote = db.OpenRecordset(strSQL_Note) rsNote.MoveLast rsNote.MoveFirst MsgBox “There are: ” & rsNote.RecordCount Do While Not rsRen.EOF With rsNote strOldNote = rsNote!Notes .Edit !Notes = strNote & strOldNote .Update .MoveNext Debug.Print strNote, ContactName End With rsRen.MoveNext Loop rsNote.Close: rsRen.Close: db.Close Set rsNote = Nothing: Set rsRen = Nothing: Set db = Nothing End Sub
-
WSCaptainKen
AskWoody LoungerAwesome John, thank you!!
-
WSCaptainKen
AskWoody LoungerMarch 3, 2012 at 11:31 pm in reply to: Setting the Form.DataEntry mode in code not taking effect #1323128Hello John. Not sure why but I never got an email indicating that anyone replied, so I never checked back until I got the urge today.
Yes it’s a double click on the sub form that open the RMA form.
I wasn’t aware of the acFormAdd and acFormEdit. Looks like you have better more standard and specific way to do it. I’ll give it a try.
Strange about the failed attempt at setting the DataEntry mode in code. Wanted to do it in case I accidentally changed it in properties at a future date. I like hard coding settings that have a major effect on how a process works, to be safe. Plus its’ a nice and easy to see what’s going on by just viewing the code and not hopping back and forth.
Thank you!
Ken
-
WSCaptainKen
AskWoody LoungerNovember 10, 2011 at 2:35 pm in reply to: Putting Registry-/system-cleanup apps to the test #1306212We have also used JVPT for many years.
My curiosity with your testing leads me to wonder if the majority of the hard drive space that was still being used in comparison to the base system could be found in the locations below?
TEMP files were located in:
C:UsersUSERNAMEAppDataLocalTemp
C:WindowsTempIt is also common to find orphaned folders from uninstall programs in these common locations.
C:UsersUSERNAMEAppDataLocal
C:Program Files
C:Program FilesCommon Files
C:Program Files (x86)
C:Program Files (x86)Common Files
C:UsersUSERNAMEAppDataRoamingIt’s also common to find folders that begin with { and end with } in “C:UsersadminAppDataLocal” that are also left over from installs.
A colleague of mine wrote a vbs utility that clears the LocalTemp, WindowsTemp and folders starting and ending with {} that can be found at: http://www.captainken.us/utilities.htm
-
WSCaptainKen
AskWoody LoungerThe only manual that you could ever hope to be up-to-date would be some type of online help, such as what Adobe provides for Photoshop. As many have pointed out FB changes to frequently, so don’t waste money on buying a book.
They just had major updates to the FB iPhone app that actually comes close to a joy to use. The new UI is very nice!
-
WSCaptainKen
AskWoody LoungerI agree with DragonXG that 25GB can be eaten up very quickly.
BTW, the correct Google labs link is http://labs.google.com/papers/disk_failures.pdf
-
WSCaptainKen
AskWoody LoungerPartition drive benefits:
We create images on a separate partition at specific installation intervals.
1) If no recovery partition, then an “out-of_box” image before the first boot into windows is created
2) All windows SP’s and updates, as well as desktop, taskbar, start menu , IE configuration tweaks. Only Admin account exists.
3) Office installed, user accounts created, and each account office settings tweaked. This includes importing Quick Access and Ribbon bar settings.
4) Flash, Java, and all other programs required for everyday usage. This includes all program configurations.
5) My Documents, Music, Video, Photos, Desktop, Favorites are all redirected to the Data partition.This allows us to quickly go back to specific clean points with an images should the system become unstable, etc., with no worry about overwriting data. The images are always readily available. System Restore points are usually turned off. When the images are created we also make sure that the hibernation file and pagefile are don’t exist, which drastically reduces the image file sizes. Then we turn them back on when ready to put system back into use.
I also use a batch file “Multiple Dated Batch File Backups” which can be found here http://www.captainken.us/utilities.htm to backup all program configuration settings that are stored on the main C drive.
Regarding program drive (C drive) space requirements:
It doesn’t take much to file up 60GB of space with just programs when using Windows 7. Programs like Office, Adobe Suites, video editing programs, restore points, etc will eat up space very quickly. Not to overlook all the windows updates.Watch out for Sync File Partnerships blot!
The article overlooked this area that I have just discovered. If you’ve created an Explorer jump list shortcut to an external drive, then you have a sync file partnership that has been setup. Here’s a good thread on the topic with examples on how to clean them up.
http://forums.techarena.in/vista-help/668593.htmAnother place disk space is wasted in these two locations with Temp files:
C:UsersadminAppDataLocalTemp
C:WindowsTempIt is shocking by the amount of installation data that is left behind by various programs. It ranges from several MB’s to a GB or more!!
Therefore, we have developed a program ClearTempFiles.vbs that runs at boot or login that auto deletes these files in both locations. It works on WinXp, Vista and Win7 and we have it running on a large variety of systems. That being said, we take no liability for something going haywire and offer no support. You can download it from my site here http://www.captainken.us/utilities.htm . I came across this one from Bill James http://billsway.com/vbspage/ a few days ago, but haven’t tried it.
-
WSCaptainKen
AskWoody LoungerHere is where I had downloaded a copy from MS.
Office Backup DiscI had a friend of mine send me a screen shot of his Office DVD, which shows a x64 and x86 as the main two folders on the DVD. Neither the MS download or my OEM install has that folder structure. Very strange that the download from MS doesn’t come with both.
I bit the bullet and ordered the actually DVD for $13.99 from the same MS site above and hoping it will contain both 32 and 64 bit versions.
Disappointing that neither MS or Dell give a choice of which version to get.
-
WSCaptainKen
AskWoody LoungerThanks guys for the words of caution, but we had already done our homework (thanks to WindowsSecrets) before deciding on 64-bit.
Happy holidays!
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
7 minutes ago -
End of 10
by
Alex5723
2 hours, 48 minutes ago -
End Of 10 : Move to Linux
by
Alex5723
3 hours, 17 minutes ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
42 minutes ago -
test post
by
gtd12345
8 hours, 49 minutes ago -
Privacy and the Real ID
by
Susan Bradley
37 minutes ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
1 hour, 3 minutes ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
13 hours, 10 minutes ago -
Upgrading from Win 10
by
WSjcgc50
34 minutes ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
8 hours, 16 minutes ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
1 day, 4 hours ago -
The story of Windows Longhorn
by
Cybertooth
16 hours, 34 minutes ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
1 day, 6 hours ago -
Are manuals extinct?
by
Susan Bradley
3 hours, 3 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
1 day, 15 hours ago -
Network Issue
by
Casey H
1 day, 3 hours ago -
Fedora Linux is now an official WSL distro
by
Alex5723
2 days, 3 hours ago -
May 2025 Office non-Security updates
by
PKCano
2 days, 4 hours ago -
Windows 10 filehistory including onedrive folder
by
Steve Bondy
2 days, 6 hours ago -
pages print on restart (Win 11 23H2)
by
cyraxote
1 day, 7 hours ago -
Windows 11 Insider Preview build 26200.5581 released to DEV
by
joep517
2 days, 8 hours ago -
Windows 11 Insider Preview build 26120.3950 (24H2) released to BETA
by
joep517
2 days, 8 hours ago -
Proton to drop prices after ruling against “Apple tax”
by
Cybertooth
2 days, 15 hours ago -
24H2 Installer – don’t see Option for non destructive install
by
JP
1 day, 8 hours ago -
Asking Again here (New User and Fast change only backups)
by
thymej
3 days, 3 hours ago -
How much I spent on the Mac mini
by
Will Fastie
10 hours, 37 minutes ago -
How to get rid of Copilot in Microsoft 365
by
Lance Whitney
1 day, 6 hours ago -
Spring cleanup — 2025
by
Deanna McElveen
3 days, 9 hours ago -
Setting up Windows 11
by
Susan Bradley
2 days, 4 hours ago -
VLC Introduces Cutting-Edge AI Subtitling and Translation Capabilities
by
Alex5723
3 days, 4 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.