Questions tagged [nt]

67 questions
2
votes
0 answers

IO_STATUS_BLOCK reference

When calling functions in ntdll.dll it sometimes returns an IO_STATUS_BLOCK e.g. NtCreateFile: MSDN. I however am not able to find a reference to, for example a table, what any of the returned values mean. When calling a function such as…
Gertjan Brouwer
  • 996
  • 1
  • 12
  • 35
2
votes
1 answer

Calling SQL database and processing unit from NT services

I need to process files whenit get dropped to folder and update details in the DB. I have an NT service written which detects the file drops Questions hovering my mind: 1- Should I use this same NT service to process it? 2- Is NT service thread…
JewelThief
  • 611
  • 2
  • 10
  • 25
2
votes
2 answers

C# How to login as a different user programmatically into a NTAuthenticated Website

Our team uses a website that uses NT Authentication. I need to point my automation scripts to that site. This needs passing the credentials of the testuser accounts to the application and not mine. How do I do that programmatically so that the…
PK.
  • 45
  • 2
  • 5
1
vote
2 answers

sql server login

I'm writing a vb.net application which connects to a db using integrated security. However, I wanted to implement a login screen so that the user enters their NT user name and password for initially connecting. This is because our information…
azid
1
vote
1 answer

How to modify file attributes without race conditions?

I want to modify a single attribute on a file (e.g the read-only attribute). In order to do that, it looks like I have to query the current file attributes with either GetFileAttributes or GetFileInformationByHandle, then set the new attributes with…
lb90
  • 828
  • 4
  • 8
1
vote
0 answers

How to set a I/O Priority of a Windows Process to High as Process Lasso does

I know there are similar questions and tools (1)(2)(3) and many more. Each of these resources in the web states that you need to use Windows NT API and with this it should be easy to change the priority. And it turns out, it is. Using the function…
1
vote
1 answer

Converting x.trig to x.nt ot x.ttl

I want to ask if there is any tool which can convert trig file to .nt or .ttl without losing any data.
Khan
  • 95
  • 1
  • 8
1
vote
1 answer

-Flutter - The minCompileSdk (31) specified in a dependency's AAR metadata is greater than this module's compileSdkVersion (android-30)

how can i fix the error FAILURE: Build failed with an exception. What went wrong: Execution failed for task ':app:checkDebugAarMetadata'. Multiple task action failures occurred: A failure occurred while executing…
benimbolat
  • 143
  • 2
  • 8
1
vote
1 answer

How to save result of a sparql query on a .nt file

I want to save all triples of dbpedia films on a N-Triple file (.nt file), I take a query on dbpedia endpoint with a java application and save the result on a file, but I can not read this file and take query from it! could u help me? //my code for…
Sareh
  • 11
  • 1
  • 2
1
vote
1 answer

Detect whether or not TESTSIGNING is enabled

I'm trying make a translation of this C++ code that was suggested as possible solution to verify if TESTSIGNING is enabled. My code almost worked fine, but in this part: while (status = STATUS_BUFFER_OVERFLOW) or (status =…
user13342579
1
vote
1 answer

Flutter The error I received when firebase listing

I've been investigating a problem for days. This is how I use Firebase Database. My goal is to list the contents of the firebase database. but every time I try, I get an error. -urunler -elyapimi --LB445dadwSDA5 ad: "deneme" …
Ceyhun Er
  • 85
  • 2
  • 6
1
vote
3 answers

White Screen - App content failed to load after launch released iOS app

I installed my application play store seamlessly. However, when I tried to install the App Store, the application was rejected and I received the following message. Guideline 2.1 - Performance - App Completeness We discovered one or more bugs in…
ishak Akdaş
  • 43
  • 2
  • 9
1
vote
1 answer

how can i get this variable in the "then"?

i take data from firebase , there are datas but i can't access to variable. Can you help me please ? Thank you in advance. import 'dart:convert'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:flutter/material.dart'; class…
1
vote
1 answer

Implicit interprocess shared memory on Windows?

What I would like to do is mark a specific area of memory as being automatically shared between processes of the same image/binary, similar to __declspec(allocate)... and __pragma(section...). I know that I can use names pipes or equivalent, but…
ameisen
  • 33
  • 1
  • 7
1
vote
3 answers

NtQuerySystemInformation returns 24 (ERROR_BAD_LENGTH)

Here is my function: PVOID QuerySystemInformation(SYSTEMINFOCLASS SystemEnum) { DWORD MemorySize = NULL; NTSTATUS Status = NtQuerySystemInformation(SystemEnum, NULL, 0, &MemorySize); if (NT_SUCCESS(Status)) { …
johnsonlee
  • 13
  • 6