Microsoft's well-known operating system. Use this tag for code reviews where the code is targeted specifically for this platform, when no other more specific tags exist.
-1
votes
0answers
17 views
C++ 3D Renderer in Console [closed]
I'm trying to create 3d engine in windows console and for now I'm trying to transform world position to screen position without camera rotation so my script look like this:
...
2
votes
1answer
65 views
Automatically remove O365 license from AD user when using powershell
As you can see I have been using multiple conditions such as if, elseif, else, but it takes ...
2
votes
2answers
57 views
Hello Triangle in Win32 and OpenGL
At the moment, I'm trying to get some experience writing C++, Win32 and OpenGL, so I decided to implement a "Hello World" of sorts. However, instead of printing ...
2
votes
1answer
109 views
Escape the Trolls console game
I wrote a simple console game, with the idea taken from a Reddit post.
The basic Idea is: Player, controlled via arrow keys, has to escape the maze (reach the ...
4
votes
2answers
256 views
Copying directories in Windows 10
I wrote a program to copy directories in Windows 10. I have tested copying a directory (696MB) in 3 different ways:
xcopy: time taken - 52 seconds
ctrl+c: time taken - 78 seconds
My program: time ...
2
votes
1answer
54 views
Filesystem search class in C#
Anyone can tell how to make this code faster?
This search takes too much time... 700 000 files for 15 minutes...
I will be grateful for each micro optimization!
Search Class:
...
4
votes
2answers
83 views
Getting NTFS permissions of all shared folders on the local machine
How can I improve the speed of the script?
...
3
votes
0answers
32 views
Settings JAVA_HOME with batch
At my work, I need to use multiple versions of Java, depending on which project I work on. I've made a batch script to take care of this. There are several different actions that you can perform with ...
10
votes
2answers
206 views
Batch file to backup and update SQL Server DBs
This is my first windows batch file. The script basically goes through this basic flow of tasks, in order to update some specific SQL Server DBs to a new DB version:
Backup all SQL server DBs that ...
7
votes
1answer
154 views
Find installed and available Windows Updates
I have a function that uses Windows Update Agent (WUA) API through COM using the win32com.client module, part of pywin32 package for retrieving the installed and the available (not yet installed) ...
5
votes
1answer
41 views
Turn a vsscanf call into a sscanf call
I am reviewing some C code (see extract below) that uses inline asm. I believe there are 4 spec violations, 1 inefficiency and 1 honking big design flaw in this code. While some of the problems I'm ...
3
votes
1answer
87 views
TCP client library using Winsock WSAEventSelect in C++
One way to write a client which uses a specific protocol, eg http like in this case, is to create a base class with the basic socket handling functionality with virtual functions which can be ...
2
votes
0answers
32 views
GROM – Generalized Release Order Management
Inspired by the StackOverflow question Auto-increment release version Jenkins I developed the following generalized solution.
Is there anything that can be done better, shorter, more elegant, more ...
6
votes
1answer
216 views
UWP scan for music files
I am implementing a music player for Windows 10, and I am in a bit of a pickle at the library phase.
I am scanning for all the files in a music library (plus optional folders the user selects) and I ...
4
votes
1answer
47 views
Monitor and video mode querying
I am working on a large project that requires information about the monitor(s). Please don't be confused by the organization of the following structs. The design intent is to be cross-platform, so ...
0
votes
0answers
33 views
Populates and prints a crystal report using three command line parameters in c#
Let me start by saying that this is the first c# program I have ever written. I'm more of a c/c++ novice programmer, and still relatively new to object oriented programming. This code works and does ...
4
votes
1answer
398 views
Snake game in C++ for Windows console
To give you a simple background, I've been programming in C++ for about a week and decided I wanted to build a simple snake game.
I made one over the course of a day and this is the end result. What ...
0
votes
0answers
67 views
Fast ReadProcessMemory, save guest names that is in memory in hum text file
My code is very slow. How do I get it fast? I would also like to put a scanner on if you have a name in memory to save it in a text file.
...
6
votes
3answers
113 views
Simple file renamer in C
It's been some time since I wrote something in C. I am looking for some advices related to my code in terms of coding style, bad/wrong logic, optimization (performance) and good practices.
The code ...
1
vote
0answers
273 views
OpenCV-based wrapper for Windows screen capture
I have written a ScreenVideoCapture class that implements an interface for capturing frames from a specified monitor connected to the PC. It uses OpenCV structures (...
2
votes
1answer
292 views
C# console roulette game
I made a C# console roulette game. Check it out and give opinions on how to improve or ideas for some other features? It's not finished yet so it has lots of room for improvement. I am very new so ...
10
votes
2answers
191 views
Python Keylogger With Built In Security Measures
The program I have developed is currently used for detecting and recording keystrokes. I have added some built in security measures that can easily(somewhat) be modified to suit individual user needs! ...
2
votes
1answer
168 views
Create share folder, AD security group, add descriptions, and apply security to new folder
My goal for this script was to:
Create new folder
Create AD group FS-TESTSHARE-R
Create AD group FS-TESTSHARE-RW
Apply both groups to the new share folder
Set full read permissions to FS-TESTSHARE-R
...
4
votes
1answer
66 views
Create share folder and AD security group and apply security to new folder
I think I'm finally done with my code and was hoping for some pointers. My goal for this script was to:
Create new folder
Create AD group FS-TESTSHARE-R
Create AD group FS-TESTSHARE-RW
Apply both ...
1
vote
1answer
169 views
Resize image from StorageFile
I have created a function that will take as a parameter a StorageFile and return a WriteableBitmap. I use this data type so that ...
3
votes
1answer
62 views
Attempt at solution for Dining Philosopher algorithm
I know there are a lot of different solutions to solve the "Dining Philosophers" problem, but I wanted to get some feedback on a solution that I have so far.
My motivation for working on this is to ...
2
votes
1answer
692 views
Windows filepath and filename validation
I have a Windows program that prompts the user to input a file path, and file name. I then check that the file exists with Directory.Exists.
Then the user inputs a filename. I check it using this ...
4
votes
1answer
159 views
Saving User Settings in Univeral App for Windows 10
I am a self-taught programmer, so please be gently. Please give as much feedback as possible for my code.
I want to make sure I am doing things the right way and efficient way.
What is the proper ...
5
votes
2answers
77 views
LifeSaver: Hides and manipulates windows
[ This app is now on github !! ]
This is a small program I wrote to hide/show different windows on my Windows PC.
This is named LifeSaver because it did save my ...
2
votes
1answer
58 views
DocsGatherer - gathering and organizing fragmented documents
This script is used for gathering fragmented documents from your computer, and organizing them by extensions.
Here is the main things my algorithm does:
Search through path(s)
Stores documents' ...
2
votes
1answer
220 views
getProcID and getProcessHandle functions
I made two functions: one to get process id and the other to get a handle with all access to that process using the process id. I'm looking for help with making these easy to use on all types of ...
2
votes
1answer
121 views
Using GetTempFileName api function to check write access to a directory
On windows, to find out if I have write access to a directory, I found that it is easiest to just create a file in that directory.
In order to do so, I found ...
10
votes
3answers
862 views
Date of latest GitHub project release
I needed a clean, simple and robust piece of code to retrieve the date of publication of the latest release of a given GitHub Project.
My constraints were that it needed to be written in the C++11 ...
6
votes
0answers
81 views
Chatty AI that saves .txt files to remember
This is a basic AI that I created. It has a teach function that creates a .txt file with user inputed info for future use. If you type teachme you have the option to type in something that you have ...
3
votes
2answers
1k views
Find a serial port device through WMI (windows management instrumentation)
The idea here is to be able to find a USB serial port device connected during runtime, thus not knowing its port number, and use it in the application to retrieve information from the device.
...
3
votes
0answers
101 views
Delphi: convenience wrapper for GetSystemTimePreciseAsFileTime()
For some purposes it can be highly desirable to use GetSystemTimePreciseAsFileTime() whenever it is available (i.e. Windows 8+) because the accuracy of ...
1
vote
1answer
590 views
Accessing Wi-Fi network interface details from Java using netsh
I am developing a Java program on Windows. I want to access Wi-Fi interface details such as SSID, IP, subnet, enabled or not, connected or not and so on. I am currently trying with using netsh and ...
6
votes
1answer
104 views
A C function for returning the address of the calling function
Suppose you are given two functions, foo and bar, and neither of them are inlined. Now, if ...
3
votes
0answers
241 views
Asking Windows for real-time priority
This code snippet is about asking Windows for the highest possible execution priority. Basically, we have to ask for real-time priority class for the entire process, after which each thread has to ask ...
4
votes
3answers
1k views
1
vote
1answer
606 views
2
votes
1answer
83 views
POP3 message downloader using state machine processor
This simple program uses a socket class I wrote, class socket, to retrieve a users pop3 emails and print to stdout. I would like feedback on the socket class and the code to download the pop3 emails. ...
6
votes
2answers
53 views
Pulling PE32 header info
Context Info
I coded up a program that maps an executable file(.exe .dll mainly) to the program's memory space which allows for easier extraction of the PE header info. I extract the information by ...
6
votes
2answers
311 views
Simple console snake game in Python
Here's a simple snake game I implemented in Python, which works in a console. It's not complete yet (doesn't generate food yet, and no scoring or difficulty levels), but it works. I would be really ...
5
votes
1answer
61 views
Querying list of servers with PS to report on Scheduled Tasks
I work in a Windows environment where Scheduled Tasks have never been documented or kept up with, leaving us with about 150 servers that have a random smattering of tasks. I am attempting to construct ...
6
votes
1answer
809 views
IP Range Port Scanner
I've been working on this project to learn networking and concurrency as well as C++11 practices. I'm just looking for a general code review.
...
14
votes
3answers
1k views
Full C++ Snake game
I managed to finish my approach on the legendary Snake game. You move around with the WASD keys. I would like to hear your opinion and maybe ideas on how I can improve frame rate because now it sort ...
2
votes
2answers
170 views
Hangman game school project
This is a school project and took me a while to write the code. Any help to improve my code is welcome!
...
6
votes
1answer
291 views
ANSI colors cross platform
I am trying to write for both NT and POSIX (my two usual platforms) and have come up with the code below. The clrs code I refer to is apparently from blender build ...
5
votes
2answers
110 views
Scanning for open ports
I made what started out as a web browser but now is a scanner for open ports. I wanted to know if you think this is a realistic or a unreliable tool for port testing. I found some open ports on my ...