Questions tagged [nt]

67 questions
0
votes
1 answer

Is there a way for a Chrome Extension popup to access the page's html information?

I want to get a variable from a page's html to load an url with this variable on a new tab. As I am a begginner, I followed Google's "Getting Started" tutorial in which they build an extension that works as popup and I am building around it. The…
0
votes
1 answer

what exactly does the NtUnmapViewOfSection method in ntdll.dll do?

I came across the NtUnmapViewOfSection method, (ntdll.dll) and I don't quite understand what it does? Can you explain please. Thanks in advance.
AuD1tek
  • 1
  • 1
0
votes
2 answers

Flutter cannot find the file required for the emulator

Launching lib\main.dart on AOSP on IA Emulator in debug mode... FAILURE: Build failed with an exception. Where: Build file 'C:\Users\Hasan\OneDrive\Masa�st�\ilkders\laaaa\android\app\build.gradle' line: 24 What went wrong: A problem occurred…
Hasan CAN
  • 11
  • 1
0
votes
1 answer

File System Filter Driver: Creating a Defragmenter

I've just started working on a file system filter driver that monitors for I/O writes to any file (listening for IRP_MJ_WRITE requests), and defragments the file transparently if it becomes fragmented. Currently, I have code like this: NTSTATUS…
user541686
  • 205,094
  • 128
  • 528
  • 886
0
votes
1 answer

Deploying IE Proxy settings to the NT Authority\System account using GPO

I am dealing with an interesting issue. I am using AWS SSM to manage my Windows Updates and going through a 3rd party proxy server (which I have no control over, nor a choice to use it). I am attempting to automate proxy settings (found…
tyger2420
  • 1
  • 2
0
votes
0 answers

Autoit script _ScreenCapture_Capture win Nt

I create a function that should wait for specific actual time (every accurate hour) then save screenshot in a folder. It work fine in Windows XP and newer versions, but my working OS is "Win NT SP6". My Function: Func Print() $count = 1 …
0
votes
1 answer

KMDF: Handling IRQ

We need to handle IRQ in KMDF driver I've registered EVT_WDF_DEVICE_RESOURCE_REQUIREMENTS_QUERY callback function but system does not call it. EVT_WDF_DEVICE_PREPARE_HARDWARE is called without any resources allocated. Attempt to call…
Victor
  • 181
  • 2
  • 12
0
votes
2 answers

Windows services and setting them to disable

Is there a way for an application to get notified that a specific service is set to disabled? I have a NT service and I want to "catch" this event and keep that time for later use. Any thoughts on how to do this? Thanks
reza
  • 5,972
  • 15
  • 84
  • 126
0
votes
1 answer

Does disk IO correspond directly to its physical sector location?

I've been playing around with disk IO on flash drives, HDDs, and SSDs by opening /dev/sd* paths in Linux the way I would any other file. I understand that the memory controller on the disk can hide true block order (via a mapping) from the OS. This…
user8202635
0
votes
0 answers

Byte to string conversion fails in C#

I have a piece of hardware which sends data via bluetooth. I'm trying to read them, but the info doesn't correspond to the original data. I'm using ReadByte to receive the data which are sent one by one. int i1 = 0; byte[] datum = new…
Dias
  • 19
  • 1
0
votes
1 answer

IntelliSense: a value of type "PVOID" cannot be used to initialize an entity of type "_NtQuerySystemInformation"

I want know all handles of files that is opened by a determinated process and i have this following code that was found here, but when is passed to VS comes a error saying: IntelliSense: a value of type "PVOID" cannot be used to initialize an…
user7649139
0
votes
1 answer

GetLogicalDriveStrings NT/SetupAPI alternative

I have to get a list of logical drives. I know I can use GetLogicalDriveStrings but I'm wondering if there's a NT API alternative I can use? Or even SetupAPI?
rng
  • 1
  • 1
0
votes
1 answer

Programmatically controlled virtual drive

How would I go about creating a virtual drive with which I can programmatically and dynamically change the contents? For instance, program A starts running and creates a virtual drive. When program B looks in the drive, it sees an error log and…
Robert Lin
0
votes
1 answer

Which dump is fastest to import in open source virtuoso - n3/nt/xml?

I am importing some RDF dumps into Virtuoso Open Source edition (6.x). I was wondering if there is a performance difference between importing different serializations of the same data (I have NT/N3/XML available). While I'm at it : has anyone seen…
Arthur Lutz
  • 155
  • 9
0
votes
1 answer

JCR node type nt:file is not allowed as child's node type for parent node type

I add one "soc:music" (nt:file) child node (same as original "soc:avatar" node) into the exoplatform profile entity, but it fails when store into JCR. I google the error, seems little mentions about it. Do you know how to fix it? thanks. The weird…
user2611807