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.
2
votes
1answer
21 views
Backup files at the end of the day
This is my first attempt at writing code that moves files at the end of the day, from my local work folder to an network archive.
The program works but, any tips, tricks, or ideas to make this code ...
8
votes
3answers
207 views
Removing multiple slashes from path
I have been trying to write a sample code block to remove multiple backward or forward slashes from a path. E.g. //a//b should be /a/b; on windows c:\a\b\\c should be c:\a\b\c
I am assuming that:
...
2
votes
1answer
41 views
Extension methods to save and load form size, position, and state
I wrote these extension methods to provide a generic/re-usable method for saving a form's size, position, and window state. What I would primarily like to know is if there is a better way to handle ...
4
votes
1answer
42 views
Walk file system checking that backup files are present
Everyday I manually check that that my systems were backed up. I use the windows file system through the Explorer gui and check that the backup files were modified on the previous day or later.
This ...
2
votes
1answer
82 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
61 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
112 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
57 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
89 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
210 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
159 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
42 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
99 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
35 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
237 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
48 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
430 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
77 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
304 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
388 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
202 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
213 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
69 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
211 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
64 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
828 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
168 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
78 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
255 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
136 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
867 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
82 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
107 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
647 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
261 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
645 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
340 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
64 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
846 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 ...