Age Verification
This website contains age-restricted material including nudity and explicit content. By entering, you confirm being at least 18 years old or the age of majority in the jurisdiction you are accessing the website from.
I am 18+ or older - Enter
I am under 18 - Exit
Our parental controls page explains how you can easily block access to this site.

最后发帖 - 页数 113

  论坛

Calgon
已加入 在 May 2022
467 发布

Still easy to see in contol pannel

新用户板块
August 18, 2023, 7 回复
I found this information.... looks complicated.:

Changing the name of a program listed in the "Installed Apps" list on Windows can be a bit tricky and might require some advanced technical skills. It typically involves modifying system registry entries. However, I must emphasize that modifying the Windows registry can be risky and might lead to system instability or other issues if not done correctly. Therefore, proceed with caution and make sure to create a backup of your registry before making any changes.

Here's a general overview of the steps you would need to follow:

**Warning: Modifying the Windows Registry can have serious consequences if done improperly. It's recommended to proceed only if you are comfortable with advanced Windows system administration.**

1. **Create a Registry Backup:**
Before making any changes, it's crucial to create a backup of your Windows registry. This will allow you to restore your registry in case anything goes wrong. To create a backup, follow these steps:
  • Press Win + R to open the Run dialog.
  • Type "regedit" and press Enter to open the Registry Editor.
  • In the Registry Editor, go to "File" > "Export."
  • Choose a location to save the backup file, give it a name, and select "All" under the "Export range" section. Click "Save."

2. **Identify the Program's Registry Entries:**
You need to identify the registry entries associated with the program whose name you want to change. These entries are usually found under `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall` or `HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall` for 32-bit applications on 64-bit systems.

3. **Modify the Registry Entry:**
Locate the registry entry corresponding to the program you want to rename. Right-click on the entry and select "Rename." Change the "DisplayName" value to the desired discreet name. Additionally, you might need to modify the "DisplayIcon" and "Publisher" values if you want to hide the program further. Remember that this is a delicate process, and making incorrect changes can cause problems.

4. **Refresh or Restart:**
After making changes, you can refresh the "Installed Apps" list by restarting your computer or by ending the "explorer.exe" process in the Task Manager and then restarting it.

Again, I want to stress the importance of caution when editing the Windows Registry. Making incorrect changes can cause system instability and even make your operating system unusable. If you're not comfortable with these steps, consider seeking assistance from someone with more technical experience.

Furthermore, please note that while this approach can change the displayed name of the program in the "Installed Apps" list, it might not hide the program completely from all system views and actions.
Wyldanimal
主持人
已加入 在 Mar 2008
16452 发布

Downloading Previews

关于iStripper的一切
August 18, 2023, 4 回复
For the More Advanced User
If you have Many Previews and want to Automate the Process
you can use a Script to do this
Here is an Example:

copy it and save it to the Root of your Models folder.
Run it from there.

This is in DEMO mode, so as it is written it doesn't delete any files
it just makes a log of What it Would delete when you take it out of DEMO mode.
I leave that part up to you.
Like I said, this is for Advanced Users.


rem find all the Preview Clips and delete them if not part of a full card
@echo off
setlocal enabledelayedexpansion
rem create log if it does not exist
If Not exist RemovePreviewClips.log @echo off > RemovePreviewClips.log
rem Log the start time
Echo Started at %date% - %Time% >> RemovePreviewClips.log
rem search all of the possible card folders
For /D %%d in (a0???, a1????, c0???, d0???, e0???, e1???, e2??? f0???, f1???, f2???) do (
Echo checking in folder %%d
rem if the folder does not have any .vghd files, it is a preview card
@if not Exist %%d\%%d*.vghd (
Echo removing the previews from folder %%d
rem make a log of the clips
echo removing the preview clips from folder %%d >> RemovePreviewClips.log
dir %%d\*.demo >> RemovePreviewClips.log
rem delete the clips
rem
rem in demo mode by default
rem ***************************
rem delete the rem from the line below to allow file deletion
rem del %%d\*.demo
rem ****************************
rem
)
rem loop through all the folders
)
rem done record the time to the log
Echo Finished at %date% - %Time% >> RemovePreviewClips.log
echo Done.
Pause
rem exit