my bad, default CSC is XSA :good:You need next field, with 3 letters. Ex. SER or ITV.
my bad, default CSC is XSA :good:You need next field, with 3 letters. Ex. SER or ITV.
I'll look for a key. If I have this CSCmy bad, default CSC is XSA :good:
hive: HKLM
path: SOFTWARE\Microsoft\EventSounds\Sounds\Camera
name: Disabled
type: DWORD
value: 1
My settings seem to be the same.I don't have this CSC. But I found those keys:
There is another key called "Locked" and set to 0. But setting it to 1 didn't remove "Camera shutter" checkbox from my sound settings. What value does it have on your device?Code:hive: HKLM path: SOFTWARE\Microsoft\EventSounds\Sounds\Camera name: Disabled type: DWORD value: 1
Yeah, i'm pretty sure it is country dependant. I dont even have the option on my device. Perhaps I should wait for a custom ROMis this camera sound country dependant? I have an sim-free Ativ s in UK and have a box I can select to deactivate it........![]()
Accents? It will be in next version of SamWP8 Tools.I had browsed a little bit the registry, and its 95% different from wp7x.
My first attempt was to change tile colors but I need to search deeper if I have time..(looks like this time the data is stored in a .dll...
Sent from my GT-I8750 using Tapatalk
Hi, I investigated in a Lumia 920 Firmware (opened with imgmount), and i find this two keys:How to add "Google" as a search provider in my Ativ S?
It don't have a option in: "internet explorer-->setting"
It's possible with provxml. But this method is difficult.Hi, I investigated in a Lumia 920 Firmware (opened with imgmount), and i find this two keys:
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchProviders\SearchProvider1
"DisplayName"="Google"
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchProviders\SearchProvider1
"Url"="http://www.google.com/m/search?=client=ms-nokia-wp&q={searchTerms}"
The problem is that the key SearchProvider1 is not present in the registry of Ativ
Ativ S: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchProviders\
Lumia: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchProviders\SearchProvider1
Does anyone know how to create?
Thank you!
Arghhhh :crying:!It's possible with provxml. But this method is difficult.
when will this be available for us ?Accents? It will be in next version of SamWP8 Tools.
Nope. It doesn't create the value. Any chance in finding a way to change the 3G and H+ icons on the ATIV S? Its values are different from the 920 and WP7 and I need the GDR2 CAB files for the ATIV S.For the search providers, you should just be able to type the full name of the key you want to add, and then the value name and data that you want, and then hit Write. The required key *should* be created automatically.
I have a trouble with UI developmentwhen will this be available for us ?
many thanks in advance Mr. (russian) WOLF
m
There is no such function in DllImports.For the search providers, you should just be able to type the full name of the key you want to add, and then the value name and data that you want, and then hit Write. The required key *should* be created automatically.
RegCreateKeyEx -> RegSetValueEx (which is how I assumed they were doing it) would create the key if it didn't already exist. However, you're right; it doesn't happen that way. They may be using RegOpenKeyEx instead (which is actually what my NativeAccess lib does, to catch typos in the key name instead of creating a bunch of keys that aren't what you want).
Instead, I recommend using ID_CAP_INTERNET_EXPLORER_SEARCH_PROVIDER_KEYS_HKCU (requires interop-unlock) and writing to the registry directly. You can use the NativeAcces lib; call CreateKey first to ensure the key exists.