Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
639 views

So for a project I'm trying to read a Registry DWORD. I have written some code but I'm getting the pointers address as an output and not the value I'm looking for. Maybe someone can help me with that? ...
Ikozox's user avatar
  • 1
0 votes
1 answer
819 views

Here is what I am trying to do: Run script to verify the existence of 8 registry keys and the values set for those keys. Export the results to a CSV file for review. Output should look like this: ...
MjrPayne's user avatar
  • 105
1 vote
1 answer
81 views

$var1 = [byte]0xDB,0x01,0x00,0x00,0x10,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0xF4,0x00,0x00,0x00 $var2 = [byte]0xDB,0x01,0x00,0x00,0x10,0x00,0x00,0x00,0x01,0x01,0x00,0x03,0xF1,0x00,0x00,0x00 $value = ...
SLEStyler's user avatar
1 vote
1 answer
1k views

I have a PowerShell script where I am reading and editing registry. I tried running it manually, calling it from command line, converting it to an .exe with ps2exe, and for all of those scenarios it ...
M--'s user avatar
  • 33.6k
0 votes
0 answers
150 views

I have multiple registry keys with some having multiple values which if not found, need to be added. I learned how to do this for a specific key and value but I am not sure how to do this for ...
Keith's user avatar
  • 841
0 votes
1 answer
53 views

Hello I try to get this output to a reg key but it only writes the first "$Monitor.ManufacturerName" value if I change the Reg_ADD to Multiline_SZ it would work but it has to be a one line ...
xxstyler20xx's user avatar
2 votes
1 answer
1k views

I need to write a Script to change the Value of the (Standard) Key located in the Registry under: REGISTRY::HKEY_CLASSES_ROOT\http\shell\open\command I just cant get anything to work, everything i ...
Lextor's user avatar
  • 23
1 vote
0 answers
212 views

I am running docker build for the following Dockerfile ARG UID=101 ARG GID=101 ARG ENV='env3' FROM node:16-alpine as build-stage WORKDIR /app COPY package*.json /app/ RUN npm i RUN npm audit fix --...
bananabreadbob's user avatar
0 votes
1 answer
595 views

So, I have a script I'm working on to get items in the registry and delete them, like so: Get-ChildItem -Path "HKLM:\SOFTWARE\Classes" -Recurse -Include *optane* | Remove-Item -Recurse -...
FrostWolf's user avatar
0 votes
1 answer
2k views

I have created a local docker registry and I want to access it from inside another container/service test. The compose file looks like: version: "3.4" services: registry: image: &...
Patrick Kwok's user avatar
1 vote
0 answers
134 views

We have a .NET application with an integrated SPA (React) and 4 environments (separated Azure subscriptions with app services), Prod/Test/Sandbox/Dev. Our frontend application use a library from a ...
AlleXyS's user avatar
  • 2,598
0 votes
1 answer
264 views

i want to write long hex to registry: [HKEY_CURRENT_USER\System\GameConfigStore] "Win32_AutoGameModeDefaultProfile"=hex:02,00,01,00,00,00,c4,20,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,...
Bakri's user avatar
  • 1
0 votes
0 answers
48 views

I'm trying to delete a RegistryKey via C#. The key i'm trying to delete has a subkey and values. When I try to delete it with regKey.DeleteSubKey(name) it says cannot delete because of subkeys. When I ...
Myridor's user avatar
0 votes
1 answer
124 views

I had a stupid adware infection with my computer a while ago and while this is fixed now, it still has left some artifacts behind. Namely that the extentionless files (normally called "File")...
INGIE's user avatar
  • 11
0 votes
1 answer
1k views

While Trying to reach Shared Folder with IP Address getting Error as shown here Error Message where trying with IP. Can Access by using hostname. We can access by using hostname. It Happens frequently,...
Manikandan N's user avatar
2 votes
1 answer
133 views

Also see my Run Powershell. My attempt is to implement the following work flow in GitHub or anyother repo server copy the link to a repo in Windows File explorer right click a folder eg D:\Projects ...
theking2's user avatar
  • 3,101
0 votes
1 answer
493 views

Trying to install the windows-registry module. Installing windows-registry requires python v2.7 and Visual Studio build tools for node-gyp according to node-gyp documentation but when i run python ...
jexroid's user avatar
  • 324
1 vote
1 answer
302 views

I use the following registry import for a right-click context menu entry, NewTextFileAndOpen, (in Notepad). Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Classes\Directory\...
karimovv's user avatar
0 votes
1 answer
879 views

I'm trying to remove and add a reg key through PS and I end up getting an error. See below. I don't know why it's causing this error. $path1 = 'HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\...
Devonne Maya's user avatar
-1 votes
1 answer
393 views

I procrastinate a lot, so I added this extension to my MS Edge browser. My problem is this has a less reviews and less users and this asks permission to run in background even when the browser is ...
donthababakka's user avatar
0 votes
1 answer
177 views

I have created a msi installer with wix ToolSet v3.11 After I install that msi installer, when I try to uninstall, it uninstalls with only basic UI. I want to show the dialog when uninstall. I think ...
Aleksandar's user avatar
0 votes
1 answer
86 views

Is there any solution to add(import) values to the registry from here string. $regString = @" Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\SystemFileAssociations\.ps1] ... blha blha ...
Agitech's user avatar
  • 51
0 votes
1 answer
404 views

I'm using docker swarm for a tiny setup (two nodes only). I'm deploying stacks on them through docker stack deploy commands. Today, after an update, something went wrong, here is what I see when I do ...
Sifnos's user avatar
  • 1,171
0 votes
1 answer
1k views

So I am trying to find installed software using the uninstall registry keys but want to only display software by certain publishers. In my array of publishers to look for I want to use wild cards. I ...
JohnA2023's user avatar
1 vote
1 answer
62 views

There is a Context Menu that I have assigned to the right mouse button as Windows Firewall. And I am using the following code to delete a security rule. Windows Registry Editor Version 5.00 [...
Albie's user avatar
  • 49

1
3 4
5
6 7
148